forked from Keno0/zsebtanar-proto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 685 Bytes
/
Copy pathtslint.json
File metadata and controls
24 lines (24 loc) · 685 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
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-react"],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "never"],
"trailing-comma": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"interface-name": [true, "never-prefix"],
"only-arrow-functions": false,
"arrow-parens": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"member-access": false,
"no-string-literal": false,
"no-namespace": false,
"member-ordering": false
},
"rulesDirectory": []
}