forked from WhitestormJS/whs.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
28 lines (28 loc) · 843 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
{
"extends": "dtslint/dt.json",
"rules": {
"adjacent-overload-signatures": false,
"align": false,
"array-type": false,
"ban-types": false,
"callable-types": false,
"comment-format": false,
"eofline": false,
"interface-name": false,
"interface-over-type-literal": false,
"jsdoc-format": false,
"max-line-length": false,
"no-empty-interface": false,
"no-namespace": false,
"no-trailing-whitespace": false,
"object-literal-key-quotes": false,
"one-line": false,
"one-variable-per-declaration": false,
"prefer-const": false,
"semicolon": false,
"triple-equals": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
}
}