control-center/tslint.json
Aleksandra Usacheva 3b472fe8fb
FE-1062: new section for claim n new conversation for them (#144)
* FE-1062: new section for claim n new conversation for them
2020-07-02 12:01:55 +03:00

32 lines
1.2 KiB
JSON

{
"extends": ["./tslint.angular.json", "tslint-config-prettier"],
"rules": {
"directive-selector": [true, ["attribute", "element"], "cc", ["camelCase", "kebab-case"]],
"component-selector": [true, ["attribute", "element"], "cc", "kebab-case"],
"template-no-negated-async": false,
"import-blacklist": [true, "rxjs/Rx", "lodash", "lodash-es"],
"no-unused-variable": [true, { "ignore-pattern": "^_" }],
"variable-name": {
"options": [
"allow-leading-underscore",
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-snake-case"
]
},
"ordered-imports": [
true,
{
"grouped-imports": true,
"groups": [
{ "name": "node_modules", "match": "^(?![.]|@cc/)", "order": 10 },
{ "name": "project", "match": "^@cc/", "order": 20 },
{ "name": "current", "match": "^[.]", "order": 30 }
]
}
],
"no-duplicate-imports": [true, { "allow-namespace-imports": true }]
}
}