-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
41 lines (41 loc) · 1.29 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
{
"root": true,
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 2020
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"eslint-plugin-node"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/object-curly-spacing": ["error", "always"],
"@typescript-eslint/quotes": ["error", "single"],
"@typescript-eslint/space-before-function-paren": ["error", "always"],
"array-bracket-spacing": ["error", "never"],
"no-process-exit": "error",
"node/no-deprecated-api": "error",
"node/no-extraneous-import": "error",
"node/no-extraneous-require": "error",
"node/no-exports-assign": "error",
"node/no-unpublished-bin": "error",
"node/no-unpublished-require": "error",
"object-curly-newline": ["error", {
"consistent": true
}],
"object-property-newline": ["error", {
"allowAllPropertiesOnSameLine": true
}],
"quote-props": ["error", "consistent-as-needed"],
"semi": ["warn", "never"],
"space-infix-ops": ["error"]
}
}