Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Sep 19, 2024
1 parent 9f90ba1 commit 18d5c44
Show file tree
Hide file tree
Showing 7 changed files with 340 additions and 213 deletions.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const ignores = ["**/extended-types"];
export default config({
svelte: true,
ignores: [...DEFAULT_IGNORES, ...ignores],
}).override("huntabyte:svelte:rules", {
}).override("huntabyte/svelte/rules", {
// we ignore as it complains about the changed warning names in Svelte 5
rules: { "svelte/no-unused-svelte-ignore": "off" },
});
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@huntabyte/eslint-config": "^0.1.1",
"@huntabyte/eslint-config": "^0.3.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint": "^9.10.0",
"eslint-plugin-svelte": "^2.44.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"prettier-plugin-tailwindcss": "0.5.13",
"svelte": "^4.2.9",
"svelte-eslint-parser": "^0.33.1",
"svelte-eslint-parser": "^0.41.1",
"wrangler": "^3.44.0"
},
"type": "module",
Expand Down
1 change: 0 additions & 1 deletion packages/bits-ui/src/tests/combobox/Combobox.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ describe("combobox", () => {

const item = getByTestId("1");
expect(item).toHaveAttribute("data-combobox-item");
1;
});

it("opens on click", async () => {
Expand Down
1 change: 0 additions & 1 deletion packages/bits-ui/src/tests/select/Select.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ describe("select", () => {

const item = getByTestId("1");
expect(item).toHaveAttribute("data-select-item");
1;
});

it("opens on click", async () => {
Expand Down
Loading

0 comments on commit 18d5c44

Please sign in to comment.