forked from DevExpress/devextreme-reactive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
40 lines (40 loc) · 1.12 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
34
35
36
37
38
39
40
{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-eslint-rules",
"tslint-config-airbnb"
],
"linterOptions": {
"exclude": [
"packages/*/api/*"
]
},
"rules": {
"filenames/match-regex": [2, "^[a-z-\\.]+$"],
"align": [true, "members", "statements"],
"interface-over-type-literal": false,
"interface-name": false,
"import-spacing": true,
"semicolon": true,
"max-line-length": [true, 100],
"object-literal-sort-keys": false,
"ordered-imports": false,
"jsx-no-lambda": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"member-access": [ true, "no-public" ],
"variable-name": [ true, "allow-pascal-case" ],
"no-empty": [true, "allow-empty-functions"],
"no-implicit-dependencies": false,
"object-shorthand-properties-first": false,
"prefer-array-literal": [true, { "allow-type-parameters": true }],
"array-type": false,
"member-ordering": false,
"jsx-wrap-multiline": false,
"no-this-assignment": [true, {"allow-destructuring": true}]
},
"jsRules": {
"object-literal-sort-keys": false
}
}