forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
51 lines (51 loc) · 1.02 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier"
],
"linterOptions": {
"exclude": [
"node_modules/**",
"**/node_modules/**",
"**/dist/*",
"**/dist/**",
"**/coverage/**",
"**/templates/**",
"**/react-styles/css/**",
"**/react-docs/public/**",
"**/react-docs/public/*",
"**/demo-app-ts/build/**",
"**/react-icons/src/icons/**",
"**/react-icons/src/index.js"
]
},
"rulesDirectory": ["tslint-plugin-prettier"],
"rules": {
"member-access": [
true,
"no-public"
],
"member-ordering": false,
"array-type": [
true,
"array"
],
"interface-name": [
true,
"never-prefix"
],
"jsx-boolean-value": [
true,
"never"
],
"jsx-no-lambda": false,
"jsx-self-close": true,
"object-literal-sort-keys": false,
"variable-name": false,
"ordered-imports": false,
"prettier": true
},
"jsRules": true
}