forked from iliyaZelenko/tiptap-vuetify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
44 lines (39 loc) · 1.22 KB
/
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
38
39
40
41
42
43
44
{
"defaultSeverity": "warning",
// tslint:latest почему-то сбивает правила указанные в rules, например quotemark (раньше такого вроде не было)
"extends": ["tslint", "tslint-config-standard"],
"linterOptions": {
// "include": [
// "./src/**/*.ts"
// ],
// "exclude": [
// "**/*.spec.js",
// "./node_modules/**/*"
// ]
},
"rules": {
"no-console": false,
// не указывать public (он по умолчанию)
"member-access": [true, "no-public"],
"object-literal-key-quotes": false,
"no-var-requires": false,
"interface-name" : [true, "never-prefix"],
"prefer-const": true,
"ordered-imports": [false],
"object-literal-sort-keys": [false],
"arrow-parens": false,
"indent": [true, "spaces", 2],
// it is important for the imports work
"no-implicit-dependencies": false,
// было true
"no-submodule-imports": [false, "~", "@"],
"quotemark": [true, "single"],
"semicolon": [true, "never"],
"trailing-comma": [true, {
"multiline": "never",
"singleline": "never"
}],
"space-before-function-paren": true,
"restrict-plus-operands": false
}
}