forked from magmo/rps-poc
-
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) · 772 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 772 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"truffle.ts",
"migrations/*",
"/**/*.json"
]
},
"jsRules": {
"object-literal-sort-keys": false,
"no-console": false,
"no-string-throw": false,
"ordered-imports": false
},
"rules": {
"object-literal-sort-keys": false,
"member-access": false,
"ordered-imports": false,
"jsx-no-lambda": false,
"interface-name": false,
"trailing-comma": [true, {"multiline":{"objects": "always"}}],
"max-classes-per-file": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"]
}
}