Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 6, 2024
1 parent 98b23c4 commit c0c3b03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -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: {} }
);
2 changes: 1 addition & 1 deletion test/bench.mjs
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit c0c3b03

Please sign in to comment.