Skip to content

Commit

Permalink
fix(eslint): disable import/sort
Browse files Browse the repository at this point in the history
  • Loading branch information
thecuvii committed Jul 12, 2024
1 parent ddd1f33 commit 3f63cbf
Show file tree
Hide file tree
Showing 4 changed files with 347 additions and 168 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@zolplay/config-monorepo",
"version": "2.0.0-beta.2",
"private": true,
"packageManager": "pnpm@9.4.0",
"packageManager": "pnpm@9.5.0",
"scripts": {
"lint": "eslint .",
"inspect": "npx @eslint/config-inspector --config ./packages/eslint/index.ts",
Expand All @@ -12,7 +12,7 @@
"release": "bumpp --r && pnpm -r publish --access public"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/node": "^20.14.10",
"@zolplay/eslint-config": "workspace:*",
"@zolplay/prettier-config": "workspace:*",
"bumpp": "^9.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const factory = ({ prettier, tailwind, next, reactQuery }: EslintConfigOp
const base = antfu({
stylistic: false,
react: true,
}).removeRules('import/order')
}).overrideRules({ 'import/order': 'off' })

base.append([
...compat.config({
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"eslint-plugin-svg-jsx": "^1.2.4"
},
"dependencies": {
"@antfu/eslint-config": "^2.21.2",
"@antfu/eslint-config": "^2.22.0",
"@eslint/eslintrc": "^3.1.0",
"@next/eslint-plugin-next": "^14.2.4",
"@tanstack/eslint-plugin-query": "^5.50.0",
"eslint-config-next": "^14.2.4",
"@next/eslint-plugin-next": "^14.2.5",
"@tanstack/eslint-plugin-query": "^5.51.1",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.17.4"
Expand Down
Loading

0 comments on commit 3f63cbf

Please sign in to comment.