-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
72 lines (72 loc) · 1.56 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
65
66
67
68
69
70
71
72
{
"ignorePatterns": ["dist", "node_modules"],
"rules": {
"max-len": [
"error",
{
"ignoreUrls": true,
"code": 80
}
],
"prefer-template": "off",
"indent": [1, 2],
"object-curly-spacing": 1,
"no-multiple-empty-lines": [
1,
{
"max": 1,
"maxEOF": 1
}
],
"no-var": 1,
"camelcase": 1,
"no-new-wrappers": 1,
"no-nested-ternary": 1,
"no-console": 1,
"no-template-curly-in-string": 1,
"no-self-compare": 1,
"no-multi-spaces": "error",
"func-names": [1, "as-needed"],
"arrow-body-style": 1,
"semi": "error",
"import/named": "error",
"import/namespace": "error",
"import/default": "error",
"import/export": "error",
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": ["off", { "devDependencies": false }],
"import/extensions": [
"error",
"ignorePackages",
{
"ts": "never",
"tsx": "never",
"js": "never",
"jsx": "never"
}
],
"prettier/prettier": "error"
},
"env": {
"browser": true,
"es6": true
},
"extends": ["eslint:recommended", "airbnb-base", "prettier"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"settings": {
"import/resolver": {
"webpack": {
"config": "config/webpack.common.js"
}
}
}
}