diff --git a/eslint.config.mjs b/eslint.config.mjs index 8997b0b..705aa63 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,10 +1,12 @@ -import unjs from 'eslint-config-unjs'; +import unjs from "eslint-config-unjs"; export default unjs( { - ignores: [ - "test/fixture/jsonc/package.json" - ] + ignores: ["test/fixture/jsonc/package.json"], + }, + { + rules: { + "@typescript-eslint/no-empty-object-type": 0, + }, }, - { rules: {} } ); diff --git a/test/bench.mjs b/test/bench.mjs index 838306f..1246755 100644 --- a/test/bench.mjs +++ b/test/bench.mjs @@ -1,4 +1,4 @@ -import { bench, run, group, summary } from "mitata"; +import { bench, run, summary } from "mitata"; import nodeToml from "toml"; import * as jsToml from "js-toml";