forked from 1257any/topology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
30 lines (30 loc) · 993 Bytes
/
tslint.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
{
"rules": {
"no-console": [true, "log"],
"no-construct": true,
"no-duplicate-imports": true,
"no-duplicate-variable": true,
"no-jasmine-focus": true,
"no-var-keyword": true,
"prefer-literal": [true, "object"],
"require-internal-with-underscore": true,
"no-toplevel-property-access": [true, "packages/**/src/"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"variable-name": [true, "ban-keywords"],
"no-inner-declarations": [true, "function"],
"no-debugger": true
},
"jsRules": {
"no-console": [true, "log"],
"no-duplicate-imports": true,
"no-duplicate-variable": true,
"no-jasmine-focus": true,
"require-internal-with-underscore": true,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"variable-name": [true, "ban-keywords"],
"no-inner-declarations": [true, "function"]
},
"linterOptions": {
"exclude": ["**/node_modules/**/*", "./dist/**/*", "./bundle/**/*"]
}
}