-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
35 lines (32 loc) · 847 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
{
"defaultSeverity": "warning",
"extends": ["tslint:latest", "tslint-config-standard"],
"linterOptions": {
"include": [
"./src/**/*.ts"
],
"exclude": [
"**/*.spec.js",
"./node_modules/**/*"
]
},
"rules": {
// in node you can use console
"no-console": false,
"interface-name": [true, "never-prefix"],
"prefer-const": true,
"ordered-imports": [false],
"object-literal-sort-keys": [false],
// it is important for the imports work
"no-implicit-dependencies": [true, ["~", "@"]],
"no-submodule-imports": [true, "~", "@"],
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"trailing-comma": [true, {
"multiline": "never",
"singleline": "never"
}],
"space-before-function-paren": true,
"restrict-plus-operands": false
}
}