|
1 | 1 | import eslint from '@eslint/js'; |
2 | 2 | import prettier from 'eslint-config-prettier'; |
3 | 3 | import eslintComments from 'eslint-plugin-eslint-comments'; |
4 | | -import imprt from 'eslint-plugin-import'; |
5 | 4 | import json from 'eslint-plugin-json'; |
6 | 5 | import jsxA11y from 'eslint-plugin-jsx-a11y'; |
7 | 6 | import react from 'eslint-plugin-react'; |
8 | 7 | import reactHooks from 'eslint-plugin-react-hooks'; |
9 | 8 | import reactNative from 'eslint-plugin-react-native'; |
10 | 9 | import simpleImportSort from 'eslint-plugin-simple-import-sort'; |
11 | | -// eslint-disable-next-line import/no-unresolved |
12 | 10 | import tseslint from 'typescript-eslint'; |
13 | 11 |
|
14 | 12 | export default tseslint.config( |
@@ -38,7 +36,6 @@ export default tseslint.config( |
38 | 36 | '@typescript-eslint': tseslint.plugin, |
39 | 37 | 'eslint-comments': eslintComments, |
40 | 38 | json, |
41 | | - 'import': imprt, |
42 | 39 | simpleImportSort, |
43 | 40 | }, |
44 | 41 | languageOptions: { |
@@ -88,8 +85,6 @@ export default tseslint.config( |
88 | 85 | 'no-underscore-dangle': 'off', |
89 | 86 | 'comma-dangle': ['error', 'always-multiline'], |
90 | 87 | 'comma-style': ['error', 'last'], |
91 | | - 'import/extensions': ['error', 'never'], |
92 | | - 'import/no-unresolved': 'error', |
93 | 88 | 'jsx-quotes': ['error', 'prefer-single'], |
94 | 89 | 'linebreak-style': ['error', 'unix'], |
95 | 90 | 'no-console': 'error', |
|
0 commit comments