-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
36 lines (36 loc) · 1.08 KB
/
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
{
"defaultSeverity": "error",
"extends": ["tslint:all"],
"rules": {
"only-arrow-functions": false,
"typedef": [true, "parameter", "call-signature"],
"file-name-casing": [true, "pascal-case"],
"array-type": [true, "array"],
"trailing-comma": [true, "never"],
"member-ordering": [true, "statics-first"],
"interface-name": [true, "never-prefix"],
"arrow-parens": [true, "ban-single-arg-parens"],
"variable-name": [true, "allow-pascal-case", "allow-leading-underscore"],
"unnecessary-else": [true, { "allow-else-if": true }],
"no-import-side-effect": false,
"linebreak-style": false,
"ban-types": false,
"no-non-null-assertion": false,
"interface-over-type-literal": false,
"prefer-function-over-method": false,
"newline-per-chained-call": false,
"no-parameter-reassignment": false,
"no-null-keyword": false,
"strict-boolean-expressions": false,
"no-any": false,
"object-literal-sort-keys": false,
"max-classes-per-file": false,
"ordered-imports": false,
"indent": {
"options": "tabs"
}
},
"linterOptions": {
"exclude": ["lib/src/index.ts"]
}
}