mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
30 lines
525 B
JSON
30 lines
525 B
JSON
{
|
|
"extends": "google",
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-use-before-define": "off",
|
|
"new-cap": "warn",
|
|
"max-len": [2, 120, {
|
|
"ignoreComments": true
|
|
}],
|
|
"object-curly-spacing": ["error", "always"],
|
|
"comma-dangle": [
|
|
"error",
|
|
"only-multiline"
|
|
],
|
|
"newline-after-var": "off",
|
|
"require-jsdoc": "off",
|
|
"strict": [
|
|
"error",
|
|
"never"
|
|
]
|
|
}
|
|
}
|