From c0c3b035519cbf409cc7299bfe83787df91c9632 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 6 Oct 2024 21:44:35 +0200 Subject: [PATCH] chore: fix lint --- eslint.config.mjs | 12 +++++++----- test/bench.mjs | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) 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";