forked from tinymce/tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (33 loc) · 1.03 KB
/
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
31
32
33
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"no-angle-bracket-type-assertion": false,
"prefer-for-of": false,
"space-before-function-paren": [true, {"anonymous": "always", "named": "never"}],
"trailing-comma": false,
"eofline": false,
"no-shadowed-variable": false,
"ordered-imports": false,
"one-variable-per-declaration": false,
"max-line-length": false,
"jsdoc-format": false,
"forin": false,
"no-empty": false,
"no-conditional-assignment": false,
"variable-name": false,
"interface-name": false,
"ban-types": false,
"no-console": false, //FIXME reenable after development
"no-bitwise": false,
"no-duplicate-imports": true,
"no-namespace": false,
"array-type": false,
"interface-over-type-literal": false
},
"rulesDirectory": []
}