Skip to content

Commit

Permalink
eslint: adding deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rdamazio committed Oct 3, 2024
1 parent 6914e5e commit 6527877
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ module.exports = tseslint.config(
},
processor: angular.processInlineTemplates,
rules: {
'@typescript-eslint/consistent-type-exports': 'error',
'@angular-eslint/directive-selector': [
'error',
{
Expand All @@ -42,7 +41,9 @@ module.exports = tseslint.config(
style: 'camelCase',
},
],
'@typescript-eslint/consistent-type-exports': 'error',
'@typescript-eslint/no-confusing-void-expression': 'error',
'@typescript-eslint/no-deprecated': 'error',
'@typescript-eslint/no-meaningless-void-operator': 'error',
'@typescript-eslint/no-mixed-enums': 'error',
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error',
Expand Down

0 comments on commit 6527877

Please sign in to comment.