forked from Luligu/matterbridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
45 lines (45 loc) · 1.38 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
{
"plugins": [
"@typescript-eslint",
"@stylistic",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"prettier/prettier": ["error"],
"indent": ["error", 2, { "SwitchCase": 1 }],
"max-len": ["warn", 250],
"no-console": ["warn"],
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
"comma-spacing": ["error", { "before": false, "after": true }],
"space-before-function-paren": ["error", { "anonymous": "always", "named": "never", "asyncArrow": "always" }],
"keyword-spacing": ["error", { "before": true, "after": true }],
"no-multi-spaces": "error",
"object-curly-spacing": ["error", "always"],
"@typescript-eslint/type-annotation-spacing": ["error", {
"before": false,
"after": true,
"overrides": {
"arrow": {
"before": true,
"after": true
}
}
}]
}
}