Skip to content

Commit 4a6ed29

Browse files
committed
Bumps
1 parent f67bdf7 commit 4a6ed29

File tree

3 files changed

+817
-811
lines changed

3 files changed

+817
-811
lines changed

eslint.config.mjs

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -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
},

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
"@typescript-eslint/parser": "^8.4.0",
3232
"eslint": "^9.0.0",
3333
"eslint-plugin-import": "^2.31.0",
34-
"eslint-plugin-unicorn": "^59.0.1",
34+
"eslint-plugin-unicorn": "^62.0.0",
3535
"generic-filehandle2": "^2.0.5",
3636
"prettier": "^3.3.3",
3737
"rimraf": "^6.0.1",
3838
"typescript": "^5.7.0",
3939
"typescript-eslint": "^8.4.0",
40-
"vitest": "^3.0.7"
40+
"vitest": "^4.0.6"
4141
},
4242
"publishConfig": {
4343
"access": "public"

0 commit comments

Comments
 (0)