2018-05-17 15:03:59 +00:00
|
|
|
{
|
2018-06-01 13:16:43 +00:00
|
|
|
"extends": "airbnb-base",
|
2018-05-17 15:03:59 +00:00
|
|
|
"env": {
|
2019-06-26 21:10:53 +00:00
|
|
|
"node": true,
|
|
|
|
"mocha": true
|
2018-05-17 15:03:59 +00:00
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 8,
|
|
|
|
"sourceType": "script",
|
|
|
|
"ecmaFeatures": {
|
|
|
|
"modules": false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"max-len": 0,
|
|
|
|
"linebreak-style": 0,
|
|
|
|
"no-plusplus": [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
"allowForLoopAfterthoughts": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"no-continue": 0,
|
|
|
|
"indent": [2, "tab"],
|
|
|
|
"no-tabs": 0,
|
|
|
|
"strict": [2, "safe"],
|
|
|
|
"curly": [2, "multi", "consistent"],
|
|
|
|
"import/no-extraneous-dependencies": 0,
|
|
|
|
"import/no-unresolved": 0,
|
|
|
|
"no-underscore-dangle": 0,
|
|
|
|
"no-param-reassign": 0,
|
|
|
|
"generator-star-spacing": 0,
|
|
|
|
"jsx-a11y/href-no-hash": "off"
|
|
|
|
}
|
|
|
|
}
|