@@ -20,22 +20,25 @@ export default tseslint.config(
2020 ...tseslint . configs . stylisticTypeChecked ,
2121 ...tseslint . configs . strictTypeChecked ,
2222 importPlugin . flatConfigs . recommended ,
23- eslintPluginUnicorn . configs [ 'flat/ recommended' ] ,
23+ eslintPluginUnicorn . configs . recommended ,
2424 {
2525 rules : {
26- 'no-underscore-dangle' : 0 ,
26+ 'no-underscore-dangle' : 'off' ,
2727 curly : 'error' ,
28- 'no-plusplus' : 0 ,
29- 'unicorn/numeric-separators-style' : 0 ,
30- 'unicorn/prefer-node-protocol' : 0 ,
31- 'unicorn/no-useless-undefined' : 0 ,
32- 'unicorn/prevent-abbreviations' : 0 ,
33- 'unicorn/prefer-spread' : 0 ,
34- '@typescript-eslint/no-explicit-any' : 0 ,
35- '@typescript-eslint/explicit-module-boundary-types' : 0 ,
36- '@typescript-eslint/ban-ts-comment' : 0 ,
37- 'unicorn/expiring-todo-comments' : 0 ,
3828 semi : [ 'error' , 'never' ] ,
29+ 'no-plusplus' : 'off' ,
30+
31+ 'unicorn/text-encoding-identifier-case' : 'off' ,
32+ 'unicorn/numeric-separators-style' : 'off' ,
33+ 'unicorn/prefer-node-protocol' : 'off' ,
34+ 'unicorn/no-useless-undefined' : 'off' ,
35+ 'unicorn/prevent-abbreviations' : 'off' ,
36+ 'unicorn/prefer-spread' : 'off' ,
37+ 'unicorn/expiring-todo-comments' : 'off' ,
38+
39+ '@typescript-eslint/no-explicit-any' : 'off' ,
40+ '@typescript-eslint/explicit-module-boundary-types' : 'off' ,
41+ '@typescript-eslint/ban-ts-comment' : 'off' ,
3942
4043 'import/no-unresolved' : 'off' ,
4144 'import/order' : [
@@ -52,20 +55,6 @@ export default tseslint.config(
5255 [ 'parent' , 'sibling' , 'index' , 'object' ] ,
5356 'type' ,
5457 ] ,
55- pathGroups : [
56- {
57- group : 'builtin' ,
58- pattern : 'react' ,
59- position : 'before' ,
60- } ,
61- {
62- group : 'external' ,
63- pattern : '@mui/icons-material' ,
64- position : 'after' ,
65- } ,
66- ] ,
67-
68- pathGroupsExcludedImportTypes : [ 'react' ] ,
6958 } ,
7059 ] ,
7160 } ,
0 commit comments