Skip to content

Commit 1cce38e

Browse files
committed
don't block index as key
1 parent 01015c3 commit 1cce38e

File tree

4 files changed

+50
-23
lines changed

4 files changed

+50
-23
lines changed

.vscode/settings.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"editor.defaultFormatter": "biomejs.biome",
3+
"editor.formatOnSave": true,
4+
"editor.formatOnType": true,
5+
"[typescript]": {
6+
"editor.defaultFormatter": "biomejs.biome"
7+
},
8+
"[typescriptreact]": {
9+
"editor.defaultFormatter": "biomejs.biome"
10+
},
11+
"[json]": {
12+
"editor.defaultFormatter": "biomejs.biome"
13+
},
14+
"editor.codeActionsOnSave": {
15+
"quickfix.biome": "explicit",
16+
"source.organizeImports.biome": "explicit"
17+
},
18+
"[prisma]": {
19+
"editor.defaultFormatter": "Prisma.prisma"
20+
}
21+
}

biome.json

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"enabled": true,
2323
"rules": {
2424
"recommended": true,
25+
"suspicious": {
26+
"noArrayIndexKey":"off"
27+
},
2528
"nursery": {
2629
"useSortedClasses": "error"
2730
}

package.json

+25-22
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,27 @@
11
{
2-
"name": "@rubriclab/config",
3-
"version": "0.0.8",
4-
"exports": {
5-
"./biome": "./biome.json",
6-
"./tsconfig": "./tsconfig.json",
7-
"./postcss": "./postcss.cjs",
8-
"./tailwind": "./tailwind.ts"
9-
},
10-
"peerDependencies": {
11-
"@biomejs/biome": "latest"
12-
},
13-
"dependencies": {
14-
"@rubriclab/package": "latest"
15-
},
16-
"simple-git-hooks": {
17-
"post-commit": "bun run rubriclab-postcommit"
18-
},
19-
"scripts": {
20-
"prepare": "bunx simple-git-hooks",
21-
"bleed": "bunx npm-check-updates -u && bun i",
22-
"clean": "rm -rf .next && rm -rf node_modules"
23-
}
2+
"name": "@rubriclab/config",
3+
"version": "0.0.8",
4+
"exports": {
5+
"./biome": "./biome.json",
6+
"./tsconfig": "./tsconfig.json",
7+
"./postcss": "./postcss.cjs",
8+
"./tailwind": "./tailwind.ts"
9+
},
10+
"peerDependencies": {
11+
"@biomejs/biome": "latest"
12+
},
13+
"dependencies": {
14+
"@rubriclab/package": "*"
15+
},
16+
"simple-git-hooks": {
17+
"post-commit": "bun run rubriclab-postcommit"
18+
},
19+
"scripts": {
20+
"prepare": "bunx simple-git-hooks",
21+
"bleed": "bun x npm-check-updates -u && bun i",
22+
"format": "bun x biome format --write .",
23+
"lint": "bun x biome check .",
24+
"lint:fix": "bun x biome lint .",
25+
"clean": "rm -rf .next && rm -rf node_modules"
26+
}
2427
}

tailwind.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {Config} from 'tailwindcss'
1+
import type { Config } from 'tailwindcss'
22
import _colors from 'tailwindcss/colors'
33

44
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>

0 commit comments

Comments
 (0)