-
Notifications
You must be signed in to change notification settings - Fork 274
/
Copy path.eslintrc
38 lines (38 loc) · 896 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
38
{
"extends": [".eslintrc.autogenerated.js"],
"plugins": ["unused-imports", "mocha"],
"ignorePatterns": ["*.d.ts*"],
"rules": {
"@typescript-eslint/no-floating-promises": "warn",
"@typescript-eslint/no-shadow": [
"warn",
{
"hoist": "all"
}
],
"@typescript-eslint/quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"arrow-body-style": "off",
"jsdoc/check-indentation": "off",
"jsdoc/newline-after-description": "off",
"no-console": "error",
"max-len": [
"warn",
{
"code": 120,
"ignoreStrings": true,
"ignoreComments": true,
"ignoreTemplateLiterals": true
}
],
"mocha/no-skipped-tests": "warn",
"mocha/no-exclusive-tests": "error",
"unused-imports/no-unused-imports": "error"
}
}