2017-03-17 14:07:08 +03:00
|
|
|
{
|
|
|
|
"extends": "tslint:recommended",
|
|
|
|
"rules": {
|
|
|
|
"no-any": true,
|
|
|
|
"no-duplicate-variable": true,
|
|
|
|
"indent": [true, "spaces"],
|
|
|
|
"quotemark": [true, "single"],
|
2023-09-24 00:56:03 +03:00
|
|
|
"max-line-length": [true, 120],
|
2017-05-04 20:45:30 +03:00
|
|
|
"prefer-const": true,
|
2024-08-31 19:01:47 +03:00
|
|
|
"no-console": ["log", {"allow": ["warn", "error"]}],
|
2024-09-02 20:45:45 +03:00
|
|
|
"no-shadowed-variable": false,
|
|
|
|
"ordered-imports": false
|
2017-03-17 14:07:08 +03:00
|
|
|
}
|
|
|
|
}
|