File tree Expand file tree Collapse file tree 1 file changed +6
-24
lines changed
Expand file tree Collapse file tree 1 file changed +6
-24
lines changed Original file line number Diff line number Diff line change 11import js from '@eslint/js' ;
2- import globals from 'globals' ;
3- import reactHooks from 'eslint-plugin-react-hooks' ;
4- import reactRefresh from 'eslint-plugin-react-refresh' ;
52import tseslint from '@typescript-eslint/eslint-plugin' ;
63import tsparser from '@typescript-eslint/parser' ;
7- import react from 'eslint-plugin-react' ;
8- import jsxA11y from 'eslint-plugin-jsx-a11y' ;
94import importPlugin from 'eslint-plugin-import' ;
5+ import jsxA11y from 'eslint-plugin-jsx-a11y' ;
6+ import react from 'eslint-plugin-react' ;
7+ import reactHooks from 'eslint-plugin-react-hooks' ;
8+ import reactRefresh from 'eslint-plugin-react-refresh' ;
9+ import globals from 'globals' ;
1010
1111export default [
1212 {
@@ -113,25 +113,7 @@ export default [
113113 ] ,
114114
115115 // Import rules
116- 'import/order' : [
117- 'error' ,
118- {
119- groups : [
120- 'builtin' ,
121- 'external' ,
122- 'internal' ,
123- [ 'parent' , 'sibling' ] ,
124- 'index' ,
125- 'object' ,
126- 'type' ,
127- ] ,
128- 'newlines-between' : 'always' ,
129- alphabetize : {
130- order : 'asc' ,
131- caseInsensitive : true ,
132- } ,
133- } ,
134- ] ,
116+ 'import/order' : 'off' , // Disabled - too strict and tedious to maintain
135117 'import/no-duplicates' : 'error' ,
136118 'import/no-unresolved' : 'error' ,
137119 'import/named' : 'error' ,
You can’t perform that action at this time.
0 commit comments