Skip to content

Commit

Permalink
fix: bump biome to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nahoc committed Sep 12, 2024
1 parent 40a0ad4 commit 1e14b8c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
15 changes: 13 additions & 2 deletions config/biome.base.jsonc
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.0/schema.json",
"files": {
"ignore": [".next", ".vercel", "build", "dist", "node_modules"],
"ignoreUnknown": true
},
// don't lint css files for now, wait until it's more mature
"css": {
"formatter": {
"enabled": false
},
"linter": {
"enabled": false
}
},
"linter": {
"enabled": true,
"rules": {
"a11y": {
"noSvgWithoutTitle": "off"
"noSvgWithoutTitle": "off",
"useSemanticElements": "info",
"useFocusableInteractive": "info"
},
"correctness": {
"noUndeclaredVariables": "error",
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@risc0/ui",
"version": "0.0.163",
"version": "0.0.166",
"private": false,
"sideEffects": false,
"type": "module",
Expand Down Expand Up @@ -35,8 +35,8 @@
"class-variance-authority": "0.7.1-canary.2",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"lucide-react": "0.439.0",
"next": "15.0.0-canary.148",
"lucide-react": "0.441.0",
"next": "15.0.0-canary.152",
"next-themes": "0.3.0",
"radash": "12.1.0",
"react-hook-form": "7.52.2",
Expand All @@ -45,13 +45,13 @@
"sonner": "1.5.0",
"string-ts": "2.2.0",
"tailwind-merge": "2.5.2",
"tailwindcss": "3.4.10",
"tailwindcss": "3.4.11",
"tailwindcss-animate": "1.0.7",
"typescript": "5.7.0-dev.20240902",
"typescript": "5.7.0-dev.20240912",
"vaul": "0.9.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@biomejs/biome": "1.9.0",
"@ladle/react": "4.1.1",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
Expand All @@ -60,7 +60,7 @@
"@vitejs/plugin-react-swc": "3.7.0",
"@vitest/coverage-v8": "2.0.5",
"deepmerge": "4.3.1",
"happy-dom": "15.7.3",
"happy-dom": "15.7.4",
"istanbul-badges-readme": "1.9.0",
"npm-run-all": "4.1.5"
},
Expand Down

0 comments on commit 1e14b8c

Please sign in to comment.