Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wtetsu committed Nov 22, 2024
1 parent 377ab30 commit 94ec6b5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
},
"suspicious": {
"noExplicitAny": "off",
"noArrayIndexKey": "off"
"noArrayIndexKey": "off",
"noEmptyInterface": "off"
},
"complexity": {
"useRegexLiterals": "off",
Expand Down
14 changes: 13 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,19 @@ export default defineConfig({
coverage: {
provider: "v8",
include: ["src"],
exclude: ["src/options", "src/background/background.js", "src/main/core/*.js"],
exclude: [
"src/options",
"src/background/background.js",
"src/main/core/*.js",
"src/main/lib/ponyfill/firefox.js",
"src/main/lib/draggable.js",
"src/main/lib/edge.js",
"src/main/lib/ribbon.js",
"src/main/lib/snap.js",
"src/main/lib/sound.js",
"src/main/lib/traverser.js",
"src/main/start.js",
],
},
},
});

0 comments on commit 94ec6b5

Please sign in to comment.