forked from ds300/patch-package
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) Β· 632 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) Β· 632 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:recommended"],
"jsRules": {},
"rules": {
"prefer-for-of": false,
"trailing-comma": [false],
"ordered-imports": [false],
"no-string-literal": false,
"arrow-parens": false,
"no-console": [false],
"semicolon": [false],
"whitespace": [false],
"interface-name": [false],
"one-line": [false],
"object-literal-sort-keys": [false],
"no-trailing-whitespace": [false],
"object-literal-key-quotes": [false],
"max-line-length": false,
"no-shadowed-variable": false,
"no-default-export": true
},
"rulesDirectory": []
}