Last active
June 18, 2024 07:40
-
-
Save florestankorp/48d13435ed1e53e73b4793946e4a8946 to your computer and use it in GitHub Desktop.
ESLint config (frontend)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["../../../../.eslintrc.json"], | |
"ignorePatterns": ["!**/*"], | |
"overrides": [ | |
{ | |
"files": ["*.ts"], | |
"rules": { | |
"@angular-eslint/directive-selector": [ | |
"error", | |
{ | |
"type": "attribute", | |
"prefix": "myWorkspace", | |
"style": "camelCase" | |
} | |
], | |
"@angular-eslint/component-selector": [ | |
"error", | |
{ | |
"type": "element", | |
"prefix": "my-workspace", | |
"style": "kebab-case" | |
} | |
] | |
}, | |
"extends": ["plugin:@nx/angular", "plugin:@angular-eslint/all"] | |
}, | |
{ | |
"files": ["*.html"], | |
"parser": "@angular-eslint/template-parser", | |
"parserOptions": { | |
"project": ["./tsconfig.base.json"], | |
"ecmaVersion": 2020, | |
"sourceType": "module" | |
}, | |
"extends": [ | |
"plugin:@nx/angular-template", | |
"plugin:@angular-eslint/eslint-plugin-template/all", | |
"plugin:prettier/recommended" | |
], | |
"rules": {} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment