forked from xdan/jodit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
43 lines (43 loc) · 992 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"jsRules": {},
"rules": {
"member-access": false,
"file-name-casing": false,
"ordered-imports": false,
"no-bitwise": false,
"prefer-for-of": false,
"no-shadowed-variable": false,
"no-var-requires": false,
"no-namespace": false,
"prettier": true,
"semicolon": [
true,
"always",
"ignore-interfaces",
"ignore-bound-class-methods"
],
"max-line-length": [true, 180],
"variable-name": [
false,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-snake-case"
],
"one-variable-per-declaration": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"class-name": false,
"interface-name": false,
"no-empty": [true, "allow-empty-catch"],
"arrow-parens": [true, "ban-single-arg-parens"],
"object-literal-sort-keys": false,
"member-ordering": false
},
"rulesDirectory": []
}