98 lines
2.7 KiB
JSON
98 lines
2.7 KiB
JSON
|
{
|
||
|
"defaultSeverity": "warning",
|
||
|
"rulesDirectory": [
|
||
|
"tslint-consistent-codestyle"
|
||
|
],
|
||
|
"linterOptions": {
|
||
|
"exclude": [
|
||
|
"node_modules/**"
|
||
|
]
|
||
|
},
|
||
|
"rules": {
|
||
|
"function-constructor": true,
|
||
|
"align": [true, "parameters", "statements"],
|
||
|
"array-type": [true, "array-simple"],
|
||
|
"arrow-return-shorthand": true,
|
||
|
"class-name": true,
|
||
|
"comment-format": [true, "check-space"],
|
||
|
"comment-type": [true, "doc", "singleline"],
|
||
|
"curly": [true, "ignore-same-line"],
|
||
|
"early-exit": true,
|
||
|
"eofline": true,
|
||
|
"indent": [true, "spaces", 4],
|
||
|
"interface-name": false,
|
||
|
"import-spacing": true,
|
||
|
"no-async-without-await": true,
|
||
|
"no-boolean-literal-compare": true,
|
||
|
"no-conditional-assignment": true,
|
||
|
"no-consecutive-blank-lines": [true, 1],
|
||
|
"no-console": [true, "log"],
|
||
|
"no-default-export": false,
|
||
|
"no-duplicate-imports": true,
|
||
|
"no-duplicate-super": true,
|
||
|
"no-duplicate-switch-case": true,
|
||
|
"no-empty": true,
|
||
|
"no-eval": true,
|
||
|
"no-invalid-template-strings": true,
|
||
|
"no-invalid-this": true,
|
||
|
"no-misused-new": true,
|
||
|
"no-static-this": true,
|
||
|
"no-trailing-whitespace": true,
|
||
|
"no-var-keyword": true,
|
||
|
"newline-before-return": true,
|
||
|
"object-literal-sort-keys": false,
|
||
|
"one-variable-per-declaration": [true, "ignore-for-loop"],
|
||
|
"ordered-imports": [
|
||
|
true, {
|
||
|
"import-sources-order": "case-insensitive",
|
||
|
"named-imports-order": "case-insensitive",
|
||
|
"grouped-imports": true,
|
||
|
"groups": [{
|
||
|
"name": "external",
|
||
|
"match": "^[A-Za-z]",
|
||
|
"order": 1
|
||
|
}, {
|
||
|
"name": "internal components",
|
||
|
"match": "^@/app/components",
|
||
|
"order": 2
|
||
|
}, {
|
||
|
"name": "internal images",
|
||
|
"match": "^@/../static/images",
|
||
|
"order": 3
|
||
|
}, {
|
||
|
"name": "internal else",
|
||
|
"match": "^@",
|
||
|
"order": 4
|
||
|
}]
|
||
|
}],
|
||
|
"prefer-const": true,
|
||
|
"prefer-method-signature": true,
|
||
|
"prefer-switch": [true, {"min-cases": 2}],
|
||
|
"prefer-while": true,
|
||
|
"quotemark": [true, "single", "avoid-escape"],
|
||
|
"semicolon": [true, "always"],
|
||
|
"space-within-parens": 0,
|
||
|
"static-this": true,
|
||
|
"trailing-comma": [true, {"multiline": "always", "singleline": "never"}],
|
||
|
"triple-equals": true,
|
||
|
"typedef": [
|
||
|
true,
|
||
|
"property-declaration"
|
||
|
],
|
||
|
"type-literal-delimiter": true,
|
||
|
"unnecessary-else": true,
|
||
|
"whitespace": [
|
||
|
true,
|
||
|
"check-branch",
|
||
|
"check-decl",
|
||
|
"check-module",
|
||
|
"check-operator",
|
||
|
"check-preblock",
|
||
|
"check-rest-spread",
|
||
|
"check-separator",
|
||
|
"check-type",
|
||
|
"check-type-operator"
|
||
|
]
|
||
|
}
|
||
|
}
|