Skip to content

Commit

Permalink
chore: update lint & format rules
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelRoux committed Nov 12, 2023
1 parent e9cbd06 commit 8b92fc2
Show file tree
Hide file tree
Showing 49 changed files with 3,684 additions and 21,505 deletions.
12 changes: 10 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@angular-eslint/component-selector": [
Expand All @@ -28,7 +29,14 @@
"style": "camelCase",
"type": "attribute"
}
]
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": ["off"]
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ export class AppModule {}
{}, // Your base configuration
withRouter({
exclude: [/some-pattern$/],
})
}),
),
],
})
Expand Down
Loading

0 comments on commit 8b92fc2

Please sign in to comment.