-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
29 lines (29 loc) · 869 Bytes
/
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"rulesDirectory": ["tslint-plugin-prettier"],
"rules": {
"prettier": [true, ".prettierrc"],
"ordered-imports": false,
"max-line-length": [false],
"no-string-literal": false,
"object-literal-sort-keys": false,
"no-empty": false,
"only-arrow-functions": false,
"no-unused-expression": false,
"require-jsdoc": false,
"no-trailing-whitespace": false,
"member-ordering": false,
"arrow-parens": false,
"no-empty-interface": false,
"no-var-requires": false,
"member-access": false,
"variable-name": false,
"ban-types": false,
"no-shadowed-variable": false,
"max-classes-per-file": false
}
}