Choices/.eslintrc
2017-08-16 13:08:14 +01:00

20 lines
354 B
Plaintext

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