Skip to content

Commit 744725e

Browse files
authored
Merge pull request #44 from coder/brett/custom-users-tab
feat: custom users tab
2 parents 32cf6f7 + 5229645 commit 744725e

25 files changed

+1041
-343
lines changed

biome.jsonc

Lines changed: 28 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,74 +2,66 @@
22
"vcs": {
33
"enabled": true,
44
"useIgnoreFile": true,
5-
"clientKind": "git",
6-
"root": ".."
5+
"clientKind": "git"
76
},
87
"files": {
9-
"ignore": [
10-
"e2e/**/*Generated.ts",
11-
"pnpm-lock.yaml"
12-
],
8+
"includes": ["!src/client/gen/types.ts","!pnpm-lock.yaml"],
139
"ignoreUnknown": true
1410
},
1511
"linter": {
1612
"rules": {
1713
"a11y": {
1814
"noSvgWithoutTitle": {
19-
"level": "off"
15+
"level": "off",
16+
"options": {}
2017
},
2118
"useButtonType": {
22-
"level": "off"
19+
"level": "off",
20+
"options": {}
2321
},
2422
"useSemanticElements": {
25-
"level": "off"
23+
"level": "off",
24+
"options": {}
2625
}
2726
},
2827
"style": {
2928
"noNonNullAssertion": {
30-
"level": "off"
29+
"level": "off",
30+
"options": {}
3131
},
3232
"noParameterAssign": {
33-
"level": "off"
33+
"level": "off",
34+
"options": {}
3435
},
3536
"useDefaultParameterLast": {
36-
"level": "off"
37+
"level": "off",
38+
"options": {}
3739
},
3840
"useSelfClosingElements": {
39-
"level": "off"
41+
"level": "off",
42+
"options": {}
4043
}
4144
},
4245
"suspicious": {
4346
"noArrayIndexKey": {
44-
"level": "off"
47+
"level": "off",
48+
"options": {}
4549
},
46-
"noConsoleLog": {
47-
"level": "error"
50+
"noConsole": {
51+
"level": "error",
52+
"options": {
53+
"allow": ["error"]
54+
}
4855
},
4956
"noThenProperty": {
50-
"level": "off"
57+
"level": "off",
58+
"options": {}
5159
}
5260
},
5361
"nursery": {
54-
"useSortedClasses": "error",
55-
"noRestrictedImports": {
56-
"level": "error",
57-
"options": {
58-
"paths": {
59-
"@mui/material": "Use @mui/material/<name> instead. See: https://material-ui.com/guides/minimizing-bundle-size/.",
60-
"@mui/icons-material": "Use @mui/icons-material/<name> instead. See: https://material-ui.com/guides/minimizing-bundle-size/.",
61-
"@mui/material/Avatar": "Use components/Avatar/Avatar instead.",
62-
"@mui/material/Alert": "Use components/Alert/Alert instead.",
63-
"@mui/material/Popover": "Use components/Popover/Popover instead.",
64-
"@mui/material/Typography": "Use native HTML elements instead. Eg: <span>, <p>, <h1>, etc.",
65-
"@mui/material/Box": "Use a <div> instead.",
66-
"@mui/material/styles": "Import from @emotion/react instead.",
67-
"lodash": "Use lodash/<name> instead."
68-
}
69-
}
70-
}
62+
"useSortedClasses": "error"
7163
}
7264
}
7365
},
74-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json"
75-
}
66+
"$schema": "https://biomejs.dev/schemas/2.1.1/schema.json"
67+
}

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
"@radix-ui/react-tabs": "^1.1.12",
2828
"@radix-ui/react-tooltip": "^1.2.7",
2929
"@tailwindcss/typography": "^0.5.16",
30+
"@tanstack/react-form": "^1.12.4",
31+
"@tanstack/valibot-form-adapter": "^0.42.1",
3032
"@universal-middleware/core": "^0.4.7",
3133
"@universal-middleware/hono": "^0.4.12",
3234
"@vercel/blob": "^1.1.1",
@@ -55,6 +57,7 @@
5557
"zustand": "^5.0.5"
5658
},
5759
"devDependencies": {
60+
"@biomejs/biome": "2.1.1",
5861
"@eslint/js": "^9.25.0",
5962
"@hono/vite-dev-server": "^0.19.1",
6063
"@types/lodash": "^4.17.17",

pnpm-lock.yaml

Lines changed: 183 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)