Skip to content

Commit

Permalink
fix: reorder eslint rules to clear rule category
Browse files Browse the repository at this point in the history
1. eslint native rules
2. unused-imports
3. typescript-eslint
4. angular-eslint
5. stylistic
  • Loading branch information
miettal committed Jun 21, 2024
1 parent 67702be commit 4a1365c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ui/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,8 @@
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"curly": "error",
"unused-imports/no-unused-imports": "error",
"@stylistic/semi": "error",
"@stylistic/quote-props": [
"warn",
"consistent"
],
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
Expand Down Expand Up @@ -64,7 +60,11 @@
"style": "camelCase"
}
],
"curly": "error",
"@stylistic/semi": "error",
"@stylistic/quote-props": [
"warn",
"consistent"
],
"@stylistic/comma-dangle": [
"error",
"always-multiline"
Expand Down

0 comments on commit 4a1365c

Please sign in to comment.