Skip to content

Instantly share code, notes, and snippets.

@florestankorp
Last active June 18, 2024 07:40
Show Gist options
  • Save florestankorp/48d13435ed1e53e73b4793946e4a8946 to your computer and use it in GitHub Desktop.
Save florestankorp/48d13435ed1e53e73b4793946e4a8946 to your computer and use it in GitHub Desktop.
ESLint config (frontend)
{
"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