-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
42 lines (42 loc) · 1.19 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"warnOnUnsupportedTypeScriptVersion": false
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"settings": {
"typescript": true,
"node": true,
"import/resolver": {
"typescript": {}
}
},
"root": true,
"env": {
"node": true,
"jest": true
},
"rules": {
"camelcase": "error",
"quotes": ["warn", "single"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"comma-dangle": ["error", "always-multiline"],
"max-len": ["error", { "code": 120 }],
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/quotes": ["error", "single", { "allowTemplateLiterals": true }],
"@typescript-eslint/semi": ["error", "never"],
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}