forked from microsoft/charticulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
34 lines (32 loc) · 1.05 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"rules": {
// Interfaces do not start with "I" in this project
"interface-name": [true, "never-prefix"],
// This is more annoying than useful. Objects are often constructed in a semantically meaningful way.
// Insisting on alphabetical order is rather arbitrary.
"object-literal-sort-keys": false,
"ordered-imports": false,
// TODO: Enable these rules when we have time to fix them
"ban-types": false,
"no-console": false,
"no-empty-interface": false,
"variable-name": false,
"one-variable-per-declaration": false,
"max-classes-per-file": false,
"triple-equals": false,
"member-ordering": false,
"no-empty": false,
"no-shadowed-variable": false,
"no-conditional-assignment": false,
"prefer-for-of": false,
"forin": false,
"no-namespace": false,
"no-bitwise": false,
"radix": false,
"no-var-requires": false,
"jsx-no-lambda": false,
"jsx-no-string-ref": false,
"jsx-key": false
}
}