-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.json
49 lines (49 loc) · 1.3 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true,
"es6": true,
"mocha": true
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"rules": {
"no-trailing-spaces": "error",
"prefer-const": "off",
"no-useless-escape": "off",
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"keyword-spacing": ["error", { "before": true }],
"space-infix-ops": "error",
"object-curly-spacing": ["error", "always"],
// "semi": ["warn", "never"],
"eol-last": ["error", "always"],
"comma-dangle": ["error", "never"],
"no-multi-spaces": "error",
"no-multiple-empty-lines": "error",
"no-irregular-whitespace": "error",
"arrow-parens": ["error", "always"],
"arrow-spacing": ["error", { "before": true, "after": true }],
"block-spacing": "error",
"comma-style": "error",
"no-unused-vars": ["off"] // Use @typescript-eslint/no-unused-vars instead, otherwise there will be checked twice
}
}