red-ui/libs/red-cache/.eslintrc.json
2022-06-19 00:29:20 +03:00

32 lines
676 B
JSON

{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["**/*.ts"],
"parserOptions": {
"project": ["libs/red-cache/tsconfig.json"]
},
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "redaction",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "redaction",
"style": "kebab-case"
}
],
"max-len": "off"
}
}
]
}