-
Notifications
You must be signed in to change notification settings - Fork 42
/
.eslintrc.json
64 lines (64 loc) · 1.68 KB
/
.eslintrc.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"plugins": [
"@typescript-eslint/eslint-plugin",
"prettier",
"jest"
],
"env": {
"es6": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0,
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"no-console": 0,
"semi": 2,
"prettier/prettier": [
"error",
{
"printWidth": 120,
"singleQuote": true,
"parser": "typescript"
}
]
},
"settings": {
"@typescript-eslint/camelcase": ["error", {"allow": ["__non_webpack_module__", "__non_webpack_require__", "^npm(_[a-z]+)+$"]}],
"@typescript-eslint/class-name-casing": 2,
"@typescript-eslint/indent": ["error", 2, {"SwitchCase": 1}],
"@typescript-eslint/no-unused-vars": [2, {"args": "none", "ignoreRestSiblings": true}],
"array-bracket-spacing": 2,
"arrow-spacing": 2,
"comma-dangle": ["error", "always-multiline"],
"computed-property-spacing": 2,
"generator-star-spacing": ["error", {"before": true, "after": true}],
"keyword-spacing": 2,
"no-multiple-empty-lines": 2,
"no-tabs": 2,
"no-trailing-spaces": 2,
"no-unused-vars": "off",
"object-curly-spacing": 2,
"padded-blocks": ["error", "never"],
"prefer-template": 2,
"rest-spread-spacing": 2,
"template-curly-spacing": 2
}
}