-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
30 lines (30 loc) · 879 Bytes
/
Copy pathtslint.json
File metadata and controls
30 lines (30 loc) · 879 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
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
"member-access": true,
"no-any": true,
"no-console": false,
"object-literal-sort-keys": false,
"strict-type-predicates": true,
"prefer-const": false,
"no-submodule-imports": false,
"prefer-for-of": false,
"no-namespace": false,
"no-implicit-dependencies": false,
"prefer-conditional-expression": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration",
"array-destructuring"
]
},
"linterOptions": {
"exclude": ["**/*.css.d.ts", "node_modules/**/*.ts", "**/__mocks__/**/*", "**/*.js"]
}
}