Choices/.eslintrc
2017-08-15 12:50:37 +01:00

17 lines
276 B
Plaintext

{
"extends": "airbnb",
"ecmaFeatures": {
"modules": true
},
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"strict": 0,
"no-underscore-dangle": 0,
"no-console": ["warn", { allow: ["warn", "error"] }]
}
}