forked from vuejs/vetur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 878 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
{
"rules": {
"class-name": true,
"curly": true,
"import-spacing": true,
"indent": [true, "spaces", 2],
"interface-over-type-literal": true,
"label-position": true,
"max-line-length": [true, 120],
"no-arg": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-inferrable-types": true,
"no-unused-expression": true,
"no-var-keyword": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-shorthand": true,
"prefer-const": true,
"prefer-method-signature": true,
"quotemark": [true, "single", "avoid-escape"],
"whitespace": true,
"semicolon": [true, "always"],
"triple-equals": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"linterOptions": {
"exclude": [
"**/node_modules/**",
"**/*.d.ts"
]
}
}