55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
|
{
|
||
|
"extends": "../../.eslintrc.json",
|
||
|
"ignorePatterns": [
|
||
|
"!**/*"
|
||
|
],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": [
|
||
|
"*.ts"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"project": [
|
||
|
"libs/ng-openlayers/tsconfig.*?.json"
|
||
|
],
|
||
|
"createDefaultProgram": true
|
||
|
},
|
||
|
"rules": {
|
||
|
"@angular-eslint/component-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "element",
|
||
|
"prefix": "aol",
|
||
|
"style": "kebab-case"
|
||
|
}
|
||
|
],
|
||
|
"@angular-eslint/directive-selector": [
|
||
|
"error",
|
||
|
{
|
||
|
"type": "attribute",
|
||
|
"prefix": "aol",
|
||
|
"style": "camelCase"
|
||
|
}
|
||
|
],
|
||
|
"@typescript-eslint/explicit-member-accessibility": [
|
||
|
"off",
|
||
|
{
|
||
|
"accessibility": "explicit"
|
||
|
}
|
||
|
],
|
||
|
"arrow-parens": [
|
||
|
"off",
|
||
|
"always"
|
||
|
],
|
||
|
"import/order": "off"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": [
|
||
|
"*.html"
|
||
|
],
|
||
|
"rules": {}
|
||
|
}
|
||
|
]
|
||
|
}
|