Skip to content

Commit 25a7935

Browse files
committed
refactor: remove unused import plugin from ESLint configuration
1 parent 817638b commit 25a7935

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

eslint.config.mjs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import tseslint from 'typescript-eslint'
33
import jestPlugin from 'eslint-plugin-jest'
44
import githubPlugin from 'eslint-plugin-github'
55
import prettierPlugin from 'eslint-plugin-prettier'
6-
import importPlugin from 'eslint-plugin-import'
76
import globals from 'globals'
87

98
export default [
@@ -108,14 +107,12 @@ export default [
108107
}
109108
},
110109
plugins: {
111-
prettier: prettierPlugin,
112-
import: importPlugin
110+
prettier: prettierPlugin
113111
},
114112
rules: {
115113
'no-console': 'off',
116114
'prettier/prettier': 'error',
117-
semi: ['error', 'never'],
118-
'import/no-commonjs': 'off'
115+
semi: ['error', 'never']
119116
}
120117
}
121118
]

0 commit comments

Comments
 (0)