This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
forked from epam/UUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
76 lines (76 loc) · 2.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-config-airbnb"
],
"linterOptions": {
"exclude": [
"infrastructure/**"
]
},
"rulesDirectory": "uui-build/TSLint",
"rules": {
"interface-name": false,
"ter-indent": [true, 4, {
"SwitchCase": 1
}],
"max-line-length": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"ordered-imports": false,
"eofline": false,
"function-name": false,
"member-access": false,
"jsx-curly-spacing": [true, "always"],
"no-trailing-whitespace": false,
"jsx-no-multiline-js": false,
"jsx-no-lambda": false,
"jsx-no-bind": false,
"member-ordering": false,
"object-literal-sort-keys": false,
"ter-arrow-parens": false,
"no-unused-expression": false,
"array-type": false,
"no-object-literal-type-assertion": false,
"object-literal-shorthand": false,
"import-name": false,
"jsx-boolean-value": false,
"no-implicit-dependencies": [true, "dev", ["@epam/test-utils"]],
"no-else-after-return": false,
"quotemark": false,
"no-submodule-imports": false,
"max-classes-per-file": false,
"completed-docs": false,
"no-empty-interface": false,
"ban-types": false,
"comment-format": false,
"align": true,
"prefer-const": false,
"object-shorthand-properties-first": false,
"no-consecutive-blank-lines": false,
"triple-equals": false,
"no-console": [true, "log"],
"no-shadowed-variable": false,
"object-curly-spacing": false,
"no-parameter-reassignment": false,
"jsx-alignment": false,
"jsx-wrap-multiline": false,
"no-increment-decrement": false,
"prefer-template": false,
"ter-prefer-arrow-callback": false,
"prefer-array-literal": false,
"no-duplicate-imports": false,
"object-literal-key-quotes": false,
"only-arrow-functions": false,
"prefer-for-of": false,
"prefer-conditional-expression": false,
"jsx-key": false,
"no-boolean-literal-compare": false,
"jsx-self-close": false,
"no-empty": false,
"interface-over-type-literal": false,
"forin": false,
"ter-func-call-spacing": false,
"no-import" : true
}
}