forked from pinguin45/charon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 922 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"extends": "@essential-projects/eslint-config",
"env": {
"browser": true,
"node": true,
"protractor": true,
"jasmine": true
},
"rules": {
"@typescript-eslint/camelcase": ["error", { "properties": "never" }],
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/explicit-function-return-type": ["error", {"allowTypedFunctionExpressions": true}],
"no-param-reassign": "off",
"6river/new-cap": "warn",
"dot-notation": "off",
"function-paren-newline": "off",
"max-len": "off",
"no-console": "off",
"import/no-unresolved": "off",
"no-lonely-if": "warn",
"no-null/no-null": "off",
"no-plusplus": "off",
"object-curly-newline": "off",
"object-curly-spacing": "off",
"object-shorthand": "off",
"padded-blocks": "off"
}
}