Skip to content

Commit

Permalink
Bump eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
n-e committed Aug 17, 2023
1 parent 7c36834 commit 526d5fc
Show file tree
Hide file tree
Showing 5 changed files with 2,457 additions and 1,299 deletions.
3 changes: 1 addition & 2 deletions lib/index.js
Expand Up @@ -53,7 +53,6 @@ module.exports = {
'no-constructor-return': 'error',
'no-div-regex': 'error',
'no-dupe-else-if': 'error',
'no-duplicate-imports': 'off', // redundant with @typescript-eslint/no-duplicate-imports
'no-else-return': ['error', { allowElseIf: false }],
'no-empty-function': 'off',
'no-eq-null': 'error',
Expand Down Expand Up @@ -234,7 +233,6 @@ module.exports = {
'@typescript-eslint/no-confusing-non-null-assertion': 'error',
'@typescript-eslint/no-confusing-void-expression': 'error',
'@typescript-eslint/no-dupe-class-members': 'error',
'@typescript-eslint/no-duplicate-imports': 'error',
'@typescript-eslint/no-duplicate-enum-values': 'error',
'@typescript-eslint/no-dynamic-delete': 'error',
'@typescript-eslint/no-empty-function': [
Expand Down Expand Up @@ -331,6 +329,7 @@ module.exports = {
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-cycle': 'error',
'import/no-duplicates': 'error',
'import/no-mutable-exports': 'error',
'import/no-named-as-default': 'off', // this rule doesn't appear to work properly
'import/no-named-as-default-member': 'error',
Expand Down

0 comments on commit 526d5fc

Please sign in to comment.