forked from nicole-mcg/react-window-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 841 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 841 Bytes
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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-react-recommended"
],
"jsRules": {
},
"rules": {
"no-unused-variable": false,
"no-floating-promises": true,
"object-literal-sort-keys": false,
"no-var-requires": false,
"jsx-boolean-value": false,
"linebreak-style": false,
"indent": [true, "spaces", 4],
"ter-indent": [4, "spaces"],
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"quotemark": [true, "double"],
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
"no-this-assignment": false,
"no-shadowed-variable": false,
"curly": [true, "ignore-same-line"],
"radix": false
},
"rulesDirectory": []
}