-
Notifications
You must be signed in to change notification settings - Fork 2
feat: custom users tab #44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 18 commits
7976aa7
13f88f8
49be0fe
9a80a7e
42971de
897d214
dd49328
6b22290
ba5e9a4
e789bc2
874d5c4
9eb5646
da6da72
1269bd9
9f0cdfa
bdb06e7
eabedd5
63185c7
24470f3
60c6a93
7cea52c
d282a70
c1725f5
5229645
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ | |
"vcs": { | ||
"enabled": true, | ||
"useIgnoreFile": true, | ||
"clientKind": "git", | ||
"root": ".." | ||
"clientKind": "git" | ||
}, | ||
"files": { | ||
"ignore": [ | ||
"e2e/**/*Generated.ts", | ||
"experimentalScannerIgnores": [ | ||
"src/client/gen/types.ts", | ||
"pnpm-lock.yaml" | ||
|
||
], | ||
"ignoreUnknown": true | ||
}, | ||
|
@@ -30,46 +30,35 @@ | |
"level": "off" | ||
}, | ||
"noParameterAssign": { | ||
"level": "off" | ||
"level": "off", | ||
"options": {} | ||
aslilac marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
"useDefaultParameterLast": { | ||
"level": "off" | ||
}, | ||
"useSelfClosingElements": { | ||
"level": "off" | ||
"level": "off", | ||
"options": {} | ||
aslilac marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
}, | ||
"suspicious": { | ||
"noArrayIndexKey": { | ||
"level": "off" | ||
}, | ||
"noConsoleLog": { | ||
"level": "error" | ||
"noConsole": { | ||
"level": "error", | ||
"options": { | ||
"allow": ["error"] | ||
} | ||
}, | ||
"noThenProperty": { | ||
"level": "off" | ||
} | ||
}, | ||
"nursery": { | ||
"useSortedClasses": "error", | ||
"noRestrictedImports": { | ||
"level": "error", | ||
"options": { | ||
"paths": { | ||
"@mui/material": "Use @mui/material/<name> instead. See: https://material-ui.com/guides/minimizing-bundle-size/.", | ||
"@mui/icons-material": "Use @mui/icons-material/<name> instead. See: https://material-ui.com/guides/minimizing-bundle-size/.", | ||
"@mui/material/Avatar": "Use components/Avatar/Avatar instead.", | ||
"@mui/material/Alert": "Use components/Alert/Alert instead.", | ||
"@mui/material/Popover": "Use components/Popover/Popover instead.", | ||
"@mui/material/Typography": "Use native HTML elements instead. Eg: <span>, <p>, <h1>, etc.", | ||
"@mui/material/Box": "Use a <div> instead.", | ||
"@mui/material/styles": "Import from @emotion/react instead.", | ||
"lodash": "Use lodash/<name> instead." | ||
} | ||
} | ||
} | ||
"useSortedClasses": "error" | ||
} | ||
} | ||
}, | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json" | ||
} | ||
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see a matching package.json version bump. do we not have biome as a dev dependency? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What do you mean by this? I've added biome a dev dependency and changed the schema URL to match. |
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is what we want to use here. The docs say the new replacement for
files.ignore
is actually...(note the
!
in there)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated to the new replacement but forgot to remove the old one 🤦