-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslintrc.json
74 lines (74 loc) · 2.19 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./app/src/tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"jsdoc"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jsdoc/recommended"
],
"env": {
"es6": true,
"node": true
},
"ignorePatterns": [
"*.js",
"*.d.ts"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/restrict-template-expressions": [
"off",
{
"allowBoolean": true,
"allowAny": true
}
],
"no-case-declarations": "off",
"jsdoc/require-jsdoc": [
"warn",
{
"require": {
"ArrowFunctionExpression": true,
"ClassDeclaration": true,
"ClassExpression": true,
"FunctionDeclaration": true,
"FunctionExpression": true,
"MethodDefinition": true
},
"contexts": [
"Property",
"ClassProperty:not([accessibility=\"private\"])",
"TSMethodSignature",
"TSEnumDeclaration",
"TSInterfaceDeclaration",
"TSTypeAliasDeclaration",
"-TSPropertySignature",
"ExportNamedDeclaration"
],
"checkGetters": true,
"checkSetters": true,
"exemptEmptyConstructors": true
}
],
"jsdoc/newline-after-description": "off",
"jsdoc/require-param-type": "off",
"jsdoc/require-returns": "warn",
"jsdoc/require-returns-type": "off",
"jsdoc/no-undefined-types": "warn"
}
}