-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtslint.json
31 lines (31 loc) · 951 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js",
"src/static/**/*.js"
]
},
"rules": {
"ordered-imports": false,
"member-ordering": false,
"object-literal-sort-keys": false,
"strict-type-predicates": false,
"triple-equals": false,
"no-debugger": false,
"no-console": false,
"no-empty": false,
"no-empty-interface": false,
"no-eval": false,
"no-for-in-array": false,
"jsx-no-lambda": false,
"interface-name": false,
"member-access": [true, "no-public", "check-accessor"],
"variable-name": false,
"no-var-requires": false,
"object-literal-shorthand": false,
"only-arrow-functions": [false]
}
}