We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 817638b commit 25a7935Copy full SHA for 25a7935
eslint.config.mjs
@@ -3,7 +3,6 @@ import tseslint from 'typescript-eslint'
3
import jestPlugin from 'eslint-plugin-jest'
4
import githubPlugin from 'eslint-plugin-github'
5
import prettierPlugin from 'eslint-plugin-prettier'
6
-import importPlugin from 'eslint-plugin-import'
7
import globals from 'globals'
8
9
export default [
@@ -108,14 +107,12 @@ export default [
108
107
}
109
},
110
plugins: {
111
- prettier: prettierPlugin,
112
- import: importPlugin
+ prettier: prettierPlugin
113
114
rules: {
115
'no-console': 'off',
116
'prettier/prettier': 'error',
117
- semi: ['error', 'never'],
118
- 'import/no-commonjs': 'off'
+ semi: ['error', 'never']
119
120
121
]
0 commit comments