forked from airyrooms/maleo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
50 lines (48 loc) · 1.42 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"jsRules": {},
"linterOptions": {
"exclude": ["node_modules/**"]
},
"rules": {
"no-require-imports": false,
"no-var-requires": false,
"arrow-parens": true,
"only-arrow-functions": false,
"trailing-comma": true,
"space-within-parens": true,
"array-type": [true, "array-simple"],
"prefer-object-spread": true,
"class-name": false,
"curly": true,
"no-default-export": false,
"no-any": false,
"no-empty": true,
"quotemark": [true, "single", "jsx-double"],
"indent": [true, "spaces", 2],
"member-access": false,
"member-ordering": true,
"jsdoc-format": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"interface-name": false,
"max-classes-per-file": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"no-bitwise": false,
"no-string-literal": false,
"no-unused-expression": false,
"jsx-no-lambda": true,
"jsx-no-string-ref": true,
"jsx-key": true,
"jsx-alignment": false,
"jsx-boolean-value": false,
"prettier": true
},
"rulesDirectory": []
}