20 строки
536 B
JSON
20 строки
536 B
JSON
|
{
|
||
|
"extends": "tslint:recommended",
|
||
|
"rules": {
|
||
|
"arrow-parens": false,
|
||
|
"file-header": [true, "------"],
|
||
|
"interface-name": false,
|
||
|
"no-console": false,
|
||
|
"no-return-await": true,
|
||
|
"no-inferrable-types": true,
|
||
|
"object-literal-sort-keys": false,
|
||
|
"prefer-template": true,
|
||
|
"quotemark": [true, "single"],
|
||
|
"variable-name": [true, "check-format"],
|
||
|
"max-line-length": {
|
||
|
"options": {
|
||
|
"limit": 200
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|