mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
3b472fe8fb
* FE-1062: new section for claim n new conversation for them
32 lines
1.2 KiB
JSON
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 }]
|
|
}
|
|
}
|