-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
executable file
·35 lines (35 loc) · 913 Bytes
/
tslint.json
File metadata and controls
executable file
·35 lines (35 loc) · 913 Bytes
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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "avoid-escape"],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "any"
}
],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"no-console": false,
"interface-name": [true, "never-prefix"],
"eofline": false,
"linebreak-style": false,
"max-classes-per-file": [false],
"member-ordering": false,
"no-var-requires": false,
"one-line": false,
"array-type": false,
"no-bitwise": false,
"variable-name": false,
"no-namespace": false,
"no-unused-expression": true,
"no-inferrable-types": true,
"semicolon": false,
"max-line-length": [true, { "limit": 120 }]
},
"rulesDirectory": []
}