appstore/tslint.json

15 строки
403 B
JSON

{
"extends": "tslint:recommended",
"rules": {
"no-any": true,
"no-duplicate-variable": true,
"indent": [true, "spaces"],
"quotemark": [true, "single"],
"max-line-length": [true, 120],
"prefer-const": true,
"no-console": ["log", {"allow": ["warn", "error"]}],
"no-shadowed-variable": false,
"ordered-imports": false
}
}