forked from vuetifyjs/vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
38 lines (31 loc) · 821 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
37
38
{
"defaultSeverity": "error",
"extends": "typestrict",
"linterOptions": {
"exclude": [
"**/*.spec.js",
"**/node_modules/**/*"
]
},
"jsRules": {},
"rules": {
"array-type": [true, "array"],
"use-type-alias": true,
"no-inferrable-types": true,
"unified-signatures": true,
"no-undefined-argument": true,
// TODO: fails with "TypeError: Cannot read property 'default' of undefined"
"use-default-type-parameter": false,
/* typestrict overrides */
// Handled by tsc
"no-unused-variable": false,
// Useless with vue
"no-invalid-this": false,
// Retarded
"restrict-plus-operands": false,
// Fails with no-unused-variable for some reason
"no-useless-cast": false,
"no-floating-promises": false
},
"rulesDirectory": []
}