Choices/.eslintrc

20 lines
354 B
Plaintext
Raw Normal View History

2016-03-15 15:04:53 +01:00
{
2017-08-14 14:39:07 +02:00
"extends": "airbnb",
2016-03-15 15:04:53 +01:00
"ecmaFeatures": {
"modules": true
},
"env": {
"browser": true,
2017-08-16 14:08:14 +02:00
"node": true,
"mocha": true,
"jasmine": true
2016-03-15 15:04:53 +01:00
},
"parser": "babel-eslint",
"rules": {
2017-08-14 14:39:07 +02:00
"strict": 0,
2017-08-15 13:50:37 +02:00
"no-underscore-dangle": 0,
2017-08-15 14:06:59 +02:00
"no-console": ["warn", { allow: ["warn", "error"] }],
"space-before-function-paren": 0
2017-08-14 14:39:07 +02:00
}
2016-03-15 15:04:53 +01:00
}