Skip to content

Commit

Permalink
build: add biome.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jose-mdz committed Dec 17, 2024
1 parent 55547b8 commit 23f115b
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 1 deletion.
30 changes: 30 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": []
},
"formatter": {
"enabled": true,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"uuid": "^11.0.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand Down
91 changes: 91 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/ReloadButton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { RefObject } from "react";
import type { RefObject } from "react";
import { IoReloadOutline } from "react-icons/io5";
import { Tooltip } from "react-tooltip";
import { Button } from "./ui/button";
Expand Down

0 comments on commit 23f115b

Please sign in to comment.