2018-10-16 06:37:27 +03:00
|
|
|
{
|
|
|
|
"extends": "tslint:latest",
|
|
|
|
"rules": {
|
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"allow-leading-underscore"
|
|
|
|
],
|
|
|
|
"no-unused-expression": true,
|
|
|
|
"no-duplicate-variable": true,
|
|
|
|
"max-classes-per-file": [
|
|
|
|
false
|
|
|
|
],
|
|
|
|
"no-implicit-dependencies": [
|
|
|
|
true,
|
|
|
|
"dev"
|
|
|
|
],
|
|
|
|
"no-empty": false,
|
|
|
|
"object-literal-sort-keys": false,
|
|
|
|
"curly": true,
|
|
|
|
"class-name": true,
|
|
|
|
"whitespace": [
|
|
|
|
true,
|
|
|
|
"check-branch",
|
|
|
|
"check-decl",
|
|
|
|
"check-operator",
|
|
|
|
"check-module",
|
|
|
|
"check-separator",
|
|
|
|
"check-type"
|
|
|
|
],
|
|
|
|
"semicolon": [
|
|
|
|
true
|
|
|
|
],
|
|
|
|
"triple-equals": true,
|
|
|
|
"max-line-length": [
|
|
|
|
true,
|
|
|
|
150
|
|
|
|
],
|
|
|
|
"no-angle-bracket-type-assertion": false,
|
|
|
|
"no-console": [
|
|
|
|
true,
|
|
|
|
"log",
|
|
|
|
"error"
|
|
|
|
],
|
|
|
|
"no-namespace": false
|
|
|
|
}
|
|
|
|
}
|