forked from xdan/jodit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
60 lines (57 loc) · 1.68 KB
/
tslint.json
File metadata and controls
60 lines (57 loc) · 1.68 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"jsRules": {},
"rules": {
"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, 150],
"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,
{
"order": [
"private-static-field",
"public-static-field",
"private-instance-field",
"protected-instance-field",
"private-instance-method",
"protected-instance-method",
"public-instance-field",
"public-instance-method",
"public-constructor"
]
}
]
},
"rulesDirectory": []
}