-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
57 lines (57 loc) · 1.4 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
{
"env": {
"es6": true,
"node": true,
"commonjs": true,
"jest": true,
"jest/globals": true
},
"extends": ["airbnb-base", "plugin:@typescript-eslint/recommended", "plugin:jest/recommended"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": "warn",
"import/prefer-default-export": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never"
}
],
"object-curly-newline": ["warn", { "consistent": true }],
"quotes": ["warn", "double", { "avoidEscape": true }],
"no-console": "off",
"operator-linebreak": "off",
"implicit-arrow-linebreak": "off",
"indent": "off",
"arrow-body-style": ["warn", "as-needed"],
"arrow-parens": ["error", "as-needed"],
"no-underscore-dangle": "off",
"jest/expect-expect": "off",
"jest/no-test-prefixes": "off",
"jest/no-disabled-tests": "off",
"no-plusplus": ["warn", { "allowForLoopAfterthoughts": true }]
},
"overrides": [
{
"files": ["*.js", "*.jsx"],
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
],
"settings": {
"import/resolver": {
"typescript": {}
}
}
}