-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
37 lines (37 loc) · 1013 Bytes
/
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
{
"defaultSeverity": "error",
"rulesDirectory": ["tslint-plugin-prettier"],
"extends": ["tslint:latest", "tslint-react", "tslint-config-airbnb", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js",
"src/registerServiceWorker.ts",
"**/*.json"
]
},
"rules": {
"prettier": [
true,
{
"semi": true,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5"
}
],
"no-console": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case", "allow-leading-underscore"],
"import-name": false,
"ordered-imports": false,
"interface-name": true,
"no-empty-interface": true,
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"jsx-no-lambda": false,
"no-submodule-imports": [true, "firebase"],
"no-implicit-dependencies": false
},
"jsRules": {}
}