You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
806 B
41 lines
806 B
4 years ago
|
{
|
||
|
"extends": ["../../.eslintrc.json"],
|
||
|
"ignorePatterns": ["!**/*"],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||
|
"parserOptions": {
|
||
|
"project": ["apps/client/tsconfig.*?.json"]
|
||
|
},
|
||
|
"rules": {}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx"],
|
||
|
"rules": {}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.js", "*.jsx"],
|
||
|
"rules": {}
|
||
|
}
|
||
|
],
|
||
|
"plugins": ["@angular-eslint/eslint-plugin", "@typescript-eslint"],
|
||
|
"rules": {
|
||
|
"@angular-eslint/component-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "element",
|
||
|
"prefix": "gf",
|
||
|
"style": "kebab-case"
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/directive-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "attribute",
|
||
|
"prefix": "gf",
|
||
|
"style": "camelCase"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|