-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
64 lines (64 loc) · 1.65 KB
/
.eslintrc
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
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"mocha": true,
"es2020": true
},
"ignorePatterns": ["lib/", "dist/", "node_modules/", "tests/", "bench/", "*.js"],
"rules": {
"object-curly-newline": 0,
"no-else-return": 0,
"prefer-destructuring": 0,
"operator-linebreak": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/no-duplicates": 0,
"import/extensions": 0,
"import/no-absolute-path": 0,
"arrow-parens": 0,
"padded-blocks": 0,
"no-spaced-func": 0,
"func-call-spacing": 0,
"space-before-function-paren": 0,
"no-plusplus": 0,
"no-mixed-operators": 0,
"no-param-reassign": 0,
"prefer-const": 0,
"comma-dangle": 0,
"spaced-comment": 0,
"no-multi-spaces": 0,
"no-restricted-properties": 0,
"no-nested-ternary": 0,
"no-shadow": 0,
"one-var-declaration-per-line": 0,
"one-var": 0,
"operator-assignment": 0,
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"no-var": 0,
"vars-on-top": 0,
"no-lonely-if": 0,
"template-curly-spacing": 0,
"object-property-newline": 0,
"prettier/prettier": ["warn", {}, {
"usePrettierrc": true
}]
}
}