forked from winksaville/AssemblyScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
30 lines (30 loc) · 885 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
30
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-angle-bracket-type-assertion": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-reference": false,
"no-empty-interface": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"arrow-parens": false,
"ban-types": false,
"curly": false,
"ordered-imports": false,
"max-line-length": false,
"member-ordering": false,
"interface-name": false,
"trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ],
"whitespace": [ true, "check-branch", "check-decl", "check-module", "check-type", "check-preblock" ],
"member-access": [ true, "no-public" ],
"max-classes-per-file": false,
"align": false,
"class-name": false
},
"rulesDirectory": []
}