forked from neos/neos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
36 lines (36 loc) · 948 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
31
32
33
34
35
36
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"rules": {
"interface-name": false,
"member-ordering": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-console": true,
"no-debugger": true,
"no-parameter-reassignment": true,
"no-var-keyword": true,
"quotemark": [true, "single", "avoid-escape", "avoid-template", "jsx-double"],
"semicolon": [true, "always"],
"typedef": [true, "call-signature"],
"variable-name": false,
"no-shadowed-variable": false,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
]
},
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
}
}