forked from stacks-network/c32check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
37 lines (37 loc) · 827 Bytes
/
.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
{
"parser": "@typescript-eslint/parser",
"plugins": [ "@typescript-eslint" ],
"parserOptions": {
"sourceType": "module",
"project": [
"tsconfig.json",
"tests/tsconfig.json"
]
},
"env": {
"browser": false,
"node": true
},
"rules": {
"comma-dangle": [ 2, "never" ],
"quotes": [ 2, "single" ],
"eol-last": 2,
"no-debugger": 1,
"no-mixed-requires": 0,
"no-underscore-dangle": 0,
"no-multi-spaces": 0,
"no-trailing-spaces": 0,
"no-extra-boolean-cast": 0,
"no-undef": 2,
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"no-var": 2,
"no-param-reassign": 0,
"no-else-return": 0,
"no-console": 0,
"prefer-const": 2,
"new-cap": 0,
"camelcase": 2,
"semi": [ 2, "never" ],
"valid-jsdoc": "error"
}
}