Skip to content

Commit

Permalink
fix: add noimplicitoverride to tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
nahoc committed Apr 23, 2024
1 parent e1645ee commit 75739bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions biome.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.7.1/schema.json",
"files": {
"ignore": [".next", ".vercel", "*.spec.*", "*.test.*", "build", "dist", "node_modules"],
"ignoreUnknown": true
Expand All @@ -17,6 +17,7 @@
"useHookAtTopLevel": "error"
},
"complexity": {
"noUselessTernary": "warn",
"noUselessLoneBlockStatements": "warn"
},
"suspicious": {
Expand All @@ -39,7 +40,6 @@
"useNumberNamespace": "error"
},
"nursery": {
"noUselessTernary": "warn",
"useSortedClasses": "warn"
}
}
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@risc0/ui",
"version": "0.0.50",
"version": "0.0.51",
"sideEffects": false,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -31,14 +31,14 @@
"@types/lodash-es": "4.17.12",
"autoprefixer": "10.4.19",
"class-variance-authority": "0.7.0",
"clsx": "2.1.0",
"clsx": "2.1.1",
"cmdk": "0.2.0",
"lodash-es": "4.17.21",
"lucide-react": "0.368.0",
"lucide-react": "0.372.0",
"next-themes": "0.3.0",
"react-hook-form": "7.51.3",
"sonner": "1.4.41",
"tailwind-merge": "2.2.2",
"tailwind-merge": "2.3.0",
"tailwindcss": "3.4.3",
"tailwindcss-animate": "1.0.7",
"typescript": "5.4.5"
Expand All @@ -49,4 +49,4 @@
"react": "^18",
"react-dom": "^18"
}
}
}
1 change: 1 addition & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"noImplicitAny": false,
"noImplicitOverride": true,

/* Bundled projects */
"incremental": true,
Expand Down

0 comments on commit 75739bf

Please sign in to comment.