deluge-windscribe-ephemeral.../.eslintrc
2021-12-25 20:53:13 +01:00

26 lines
No EOL
535 B
Text

{
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": [
"google"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"max-len": "off",
"comma-dangle": "off",
"require-jsdoc": "off",
"indent": ["error", 2],
"padded-blocks": ["warn", { "classes": "always", "switches": "never", "blocks": "never" }],
"linebreak-style": "off",
"arrow-parens": ["warn", "as-needed"]
}
}