-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
33 lines (33 loc) · 853 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
32
33
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["./dist/**", "node_modules/**", "./**/*.d.ts"]
},
"rules": {
"curly": [true, "ignore-same-line"],
"interface-name": [true, "never-prefix"],
"jdsoc-format": false,
"jsx-boolean-value": ["never"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-bitwise": false,
"no-console": false,
"no-empty": false,
"no-empty-interface": false,
"no-string-literal": false,
"no-var-requires": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
}
}