Skip to content

Commit c60208e

Browse files
committed
fix package.json issues
1 parent 7472d32 commit c60208e

65 files changed

Lines changed: 1795 additions & 3506 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.biomeignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**/pnpm-lock.yaml
2+
drizzle/**
3+
lib/editor/react-renderer.tsx
4+
node_modules
5+
.next
6+
public
7+
**/package-lock.json
8+
**/bun.lockb
9+
**/.turbo
10+
**/.output
11+
**/.vercel
12+
**/.vscode

biome.json

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"defaultBranch": "main",
7+
"useIgnoreFile": true
8+
},
9+
"files": {
10+
"ignoreUnknown": false
11+
},
12+
"formatter": {
13+
"enabled": true,
14+
"formatWithErrors": false,
15+
"indentStyle": "space",
16+
"indentWidth": 2,
17+
"lineEnding": "lf",
18+
"lineWidth": 80,
19+
"attributePosition": "auto"
20+
},
21+
"linter": {
22+
"enabled": true,
23+
"rules": {
24+
"recommended": true,
25+
"a11y": {
26+
"useHtmlLang": "warn",
27+
"noHeaderScope": "warn",
28+
"useValidAriaRole": {
29+
"level": "warn",
30+
"options": {
31+
"ignoreNonDom": false,
32+
"allowInvalidRoles": ["none", "text"]
33+
}
34+
},
35+
"useSemanticElements": "off",
36+
"noSvgWithoutTitle": "off",
37+
"useMediaCaption": "off",
38+
"noAutofocus": "off",
39+
"useFocusableInteractive": "off",
40+
"useAriaPropsForRole": "off",
41+
"useKeyWithClickEvents": "off"
42+
},
43+
"complexity": {
44+
"noUselessStringConcat": "warn",
45+
"noForEach": "off",
46+
"noUselessSwitchCase": "off",
47+
"noUselessThisAlias": "off",
48+
"noBannedTypes": "off"
49+
},
50+
"correctness": {
51+
"noUnusedImports": "warn",
52+
"useJsxKeyInIterable": "off",
53+
"useExhaustiveDependencies": "off"
54+
},
55+
"security": {
56+
"noDangerouslySetInnerHtml": "off"
57+
},
58+
"style": {
59+
"useFragmentSyntax": "warn",
60+
"noYodaExpression": "warn",
61+
"useDefaultParameterLast": "warn",
62+
"useExponentiationOperator": "off",
63+
"noUnusedTemplateLiteral": "off",
64+
"noUselessElse": "off"
65+
},
66+
"suspicious": {
67+
"noExplicitAny": "off"
68+
}
69+
}
70+
},
71+
"javascript": {
72+
"jsxRuntime": "reactClassic",
73+
"formatter": {
74+
"jsxQuoteStyle": "double",
75+
"quoteProperties": "asNeeded",
76+
"trailingCommas": "all",
77+
"semicolons": "always",
78+
"arrowParentheses": "always",
79+
"bracketSpacing": true,
80+
"bracketSameLine": false,
81+
"quoteStyle": "single",
82+
"attributePosition": "auto"
83+
}
84+
},
85+
"json": {
86+
"formatter": {
87+
"enabled": true,
88+
"trailingCommas": "none"
89+
},
90+
"parser": {
91+
"allowComments": true,
92+
"allowTrailingCommas": false
93+
}
94+
},
95+
"css": {
96+
"formatter": { "enabled": false },
97+
"linter": { "enabled": false }
98+
},
99+
"assist": {
100+
"enabled": true,
101+
"actions": {
102+
"source": {
103+
"organizeImports": "on"
104+
}
105+
}
106+
}
107+
}

biome.jsonc

Lines changed: 0 additions & 134 deletions
This file was deleted.

0 commit comments

Comments
 (0)