Skip to content

Commit

Permalink
Remove biome lint for separate PR
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer committed Nov 15, 2024
1 parent 1efc548 commit 2c26277
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
22 changes: 19 additions & 3 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false },
"vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": true },
"files": {
"ignoreUnknown": false,
"ignore": [
"**/pnpm-lock.yaml",
"lib/db/migrations",
"lib/editor/react-renderer.tsx",
"node_modules",
".next",
"public",
Expand All @@ -24,8 +25,23 @@
"bracketSpacing": true,
"ignore": ["**/pnpm-lock.yaml", "lib/db/drizzle"]
},
"organizeImports": { "enabled": false },
"linter": { "enabled": false },
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"noSvgWithoutTitle": "off",
"useKeyWithClickEvents": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"correctness": {
"useExhaustiveDependencies": "off"
}
}
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint && biome lint",
"lint:fix": "next lint --fix && biome lint --write",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "biome format --write",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
Expand Down

0 comments on commit 2c26277

Please sign in to comment.