tracktracker/.eslintrc.json

30 lines
703 B
JSON
Raw Normal View History

2020-01-15 23:34:47 +00:00
{
"extends": [
"eslint"
2020-01-15 23:34:47 +00:00
],
"env": {
"es6": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2019,
2020-01-15 23:34:47 +00:00
"sourceType": "script"
},
"ignorePatterns": [
"node_modules/",
"dist/"
],
"rules": {
"strict": ["error", "never"],
"no-console": ["error", {"allow": ["info", "warn", "error"]}],
"no-multi-str": "off",
"func-style": ["error", "expression"],
2020-07-26 19:03:41 +00:00
"max-len": ["error", {"code": 79}],
"lines-around-comment": ["error", {"allowBlockStart": true}],
"jsdoc/require-returns": "off"
2020-01-15 23:34:47 +00:00
}
}