1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2025-09-11 23:09:27 +02:00

fix!: usage of eslint defineConfig()

Ref: https://typescript-eslint.io/packages/typescript-eslint/#migrating-to-defineconfig

BREAKING CHANGE: peerDependencies:
`eslint@^9.22.0`
`eslint-plugin-unicorn@^61.0.0`
This commit is contained in:
2025-09-11 19:48:20 +02:00
parent 929978af36
commit 2d8260472a
9 changed files with 246 additions and 330 deletions

View File

@@ -1,6 +1,6 @@
import typescriptESLint from "typescript-eslint"
import { defineConfig } from "eslint/config"
import configConventions from "./eslint.config.js"
export default typescriptESLint.config(...configConventions, {
export default defineConfig(...configConventions, {
ignores: ["test/fixtures/*"],
})