forked from tinymce/tinymce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (31 loc) · 944 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
31
{
"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": true,
"no-bitwise": false,
"no-duplicate-imports": true,
"no-namespace": false
},
"rulesDirectory": []
}