-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
36 lines (33 loc) · 889 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
{
"defaultSeverity": "warning",
"extends": ["tslint:latest", "tslint-config-standard"],
"linterOptions": {
"include": [
"./src/**/*.ts"
],
"exclude": [
"**/*.spec.js",
"./node_modules/**/*"
]
},
"rules": {
/* Ilya Zelen tastes */
"interface-name": [true, "never-prefix"],
"prefer-const": true,
"ordered-imports": [false],
"object-literal-sort-keys": [false],
// "no-implicit-dependencies": [true, "dev"],
// 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
}
}