forked from relay-tools/relay-compiler-language-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 749 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 749 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"curly": false,
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"member-access": [false],
"no-shadowed-variable": false,
"member-ordering": false,
"forin": false,
"no-console": false,
"no-namespace": [true, "allow-declarations"],
"no-unused-expression": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": true,
"trailing-comma": false,
"interface-over-type-literal": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"jsdoc-format": false
},
"rulesDirectory": []
}