@team23/design-system
Version:
A set of (S)CSS Rules for basic styling that should be a common base for all projects in TEAM23 SE.
47 lines (46 loc) • 1.18 kB
JSON
{
"extends" : [
"../../.eslintrc.json"
],
"ignorePatterns" : [
"!**/*"
],
"overrides" : [
{
"files" : [
"*.ts"
],
"rules" : {
"@angular-eslint/directive-selector" : [
"error",
{
"type" : "attribute",
"prefix" : "ui",
"style" : "camelCase"
}
],
"@angular-eslint/component-selector" : [
"error",
{
"type" : "element",
"prefix" : "ui",
"style" : "kebab-case"
}
]
},
"extends" : [
"plugin:@nrwl/nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
]
},
{
"files" : [
"*.html"
],
"extends" : [
"plugin:@nrwl/nx/angular-template"
],
"rules" : {}
}
]
}