Choices/.eslintrc

17 lines
276 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,
"node": true
},
"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,
"no-console": ["warn", { allow: ["warn", "error"] }]
2017-08-14 14:39:07 +02:00
}
2016-03-15 15:04:53 +01:00
}