forked from BabylonJS/Babylon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
28 lines (28 loc) · 818 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
{
"rules": {
"no-this-assignment": true,
"no-eval": true,
"align": true,
"arrow-parens": true,
"no-trailing-whitespace": true,
"new-parens": true,
"no-consecutive-blank-lines": true,
"no-irregular-whitespace": true,
"semicolon": [true, "always"],
"space-before-function-paren": [true, "never"],
"space-within-parens": true,
"curly": true,
"whitespace": [true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-type-operator",
"check-preblock"
],
"indent": [true, "spaces", 4]
}
}