-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtslint.json
34 lines (34 loc) · 1.01 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
{
"extends": ["tslint-plugin-prettier", "tslint-config-prettier"],
"defaultSeverity": "warning",
"jsRules": true,
"linterOptions": {
"exclude": ["generated/**/*", "src/shared/icons.tsx"]
},
"rules": {
"array-type": [true, "generic"],
"import-blacklist": [true, [".*\\.tsx?$"]],
"interface-name": false,
"interface-over-type-literal": false,
"jsdoc-format": false,
"max-classes-per-file": false,
"member-access": [true, "no-public"],
"member-ordering": false,
"no-any": true,
"no-default-export": true,
"no-duplicate-imports": true,
"no-empty": false,
"no-implicit-dependencies": [true, "dev", ["src"]],
"no-object-literal-type-assertion": true,
"no-submodule-imports": false,
"no-unsafe-any": true,
"no-unused-expression": false,
"object-literal-sort-keys": false,
"ordered-imports": [false],
"one-variable-per-declaration": false,
"prettier": true,
"radix": false,
"triple-equals": true,
"variable-name": false
}
}