mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
feat: extend biome.jsonc with "useConsistentCurlyBraces": "error" (#21379)
This commit is contained in:
+3
-2
@@ -36,12 +36,13 @@
|
||||
"useAsConstAssertion": "error",
|
||||
"useEnumInitializers": "error",
|
||||
"useSingleVarDeclarator": "error",
|
||||
"useConsistentCurlyBraces": "error",
|
||||
"noUnusedTemplateLiteral": "error",
|
||||
"useNumberNamespace": "error",
|
||||
"noInferrableTypes": "error",
|
||||
"noUselessElse": "error",
|
||||
"noRestrictedImports": {
|
||||
"level": "error",
|
||||
"noRestrictedImports": {
|
||||
"level": "error",
|
||||
"options": {
|
||||
"paths": {
|
||||
// "@mui/material/Alert": "Use components/Alert/Alert instead.",
|
||||
|
||||
@@ -95,7 +95,7 @@ export const BreadcrumbSeparator: FC<ComponentProps<"li">> = ({
|
||||
)}
|
||||
{...props}
|
||||
>
|
||||
{"/"}
|
||||
/
|
||||
</li>
|
||||
);
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ export const SignInLayout: FC<PropsWithChildren> = ({ children }) => {
|
||||
{children}
|
||||
</div>
|
||||
<div className="text-xs text-content-secondary pt-6">
|
||||
{"\u00a9"} {new Date().getFullYear()} Coder Technologies, Inc.
|
||||
© {new Date().getFullYear()} Coder Technologies, Inc.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -272,10 +272,7 @@ const SupportButton: FC<SupportButtonProps> = ({ name, target, icon }) => {
|
||||
className="inline-block"
|
||||
>
|
||||
{icon && (
|
||||
<SupportIcon
|
||||
icon={icon}
|
||||
className={"size-5 text-content-secondary"}
|
||||
/>
|
||||
<SupportIcon icon={icon} className="size-5 text-content-secondary" />
|
||||
)}
|
||||
{name}
|
||||
<span className="sr-only"> (link opens in new tab)</span>
|
||||
|
||||
@@ -66,7 +66,7 @@ export const RequestLogsPageView: FC<RequestLogsPageViewProps> = ({
|
||||
{isLoading ? (
|
||||
<TableLoader />
|
||||
) : interceptions?.length === 0 ? (
|
||||
<TableEmpty message={"No request logs available"} />
|
||||
<TableEmpty message="No request logs available" />
|
||||
) : (
|
||||
interceptions?.map((interception) => (
|
||||
<RequestLogsRow
|
||||
|
||||
@@ -173,7 +173,7 @@ export const RequestLogsRow: FC<RequestLogsRowProps> = ({ interception }) => {
|
||||
<Avatar
|
||||
fallback={interception.initiator.username}
|
||||
src={interception.initiator.avatar_url}
|
||||
size={"lg"}
|
||||
size="lg"
|
||||
className="flex-shrink-0"
|
||||
/>
|
||||
<div className="font-medium truncate min-w-0 flex-1 overflow-hidden">
|
||||
@@ -303,7 +303,7 @@ export const RequestLogsRow: FC<RequestLogsRowProps> = ({ interception }) => {
|
||||
<Avatar
|
||||
fallback={interception.initiator.username}
|
||||
src={interception.initiator.avatar_url}
|
||||
size={"sm"}
|
||||
size="sm"
|
||||
className="flex-shrink-0"
|
||||
/>
|
||||
<span className="truncate min-w-0 w-full">
|
||||
|
||||
@@ -53,8 +53,8 @@ interface ProviderFilterProps {
|
||||
export const ProviderFilter: FC<ProviderFilterProps> = ({ menu }) => {
|
||||
return (
|
||||
<SelectFilter
|
||||
label={"Select provider"}
|
||||
placeholder={"All providers"}
|
||||
label="Select provider"
|
||||
placeholder="All providers"
|
||||
emptyText="No providers found"
|
||||
options={menu.searchOptions}
|
||||
onSelect={(option) => menu.selectOption(option)}
|
||||
|
||||
@@ -30,7 +30,7 @@ export const CliInstallPageView: FC<CliInstallPageViewProps> = ({ origin }) => {
|
||||
</RouterLink>
|
||||
</div>
|
||||
<div css={styles.copyright}>
|
||||
{"\u00a9"} {new Date().getFullYear()} Coder Technologies, Inc.
|
||||
© {new Date().getFullYear()} Coder Technologies, Inc.
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -21,7 +21,7 @@ export const ExportPolicyButton: FC<ExportPolicyButtonProps> = ({
|
||||
|
||||
return (
|
||||
<Button
|
||||
variant={"outline"}
|
||||
variant="outline"
|
||||
disabled={!canCreatePolicyJson || isDownloading}
|
||||
onClick={async () => {
|
||||
if (canCreatePolicyJson) {
|
||||
|
||||
@@ -376,7 +376,7 @@ const IdpMappingTable: FC<IdpMappingTableProps> = ({ isEmpty, children }) => {
|
||||
<TableRow>
|
||||
<TableCell colSpan={999}>
|
||||
<EmptyState
|
||||
message={"No organization mappings"}
|
||||
message="No organization mappings"
|
||||
isCompact
|
||||
cta={
|
||||
<Link
|
||||
|
||||
@@ -108,7 +108,7 @@ export const ModifyPromptDialog: FC<ModifyPromptDialogProps> = ({
|
||||
<ErrorAlert error={updatePromptMutation.error} />
|
||||
)}
|
||||
{workspaceBuildRunning && (
|
||||
<ErrorAlert error={"Cannot modify the prompt of a running task"} />
|
||||
<ErrorAlert error="Cannot modify the prompt of a running task" />
|
||||
)}
|
||||
|
||||
<div>
|
||||
|
||||
@@ -228,13 +228,13 @@ const TemplateEmbedPageView: FC<TemplateEmbedPageViewProps> = ({
|
||||
>
|
||||
<div className="flex items-center gap-3">
|
||||
<RadioGroupItem value="manual" id="manual" />
|
||||
<Label htmlFor={"manual"} className="cursor-pointer">
|
||||
<Label htmlFor="manual" className="cursor-pointer">
|
||||
Manual
|
||||
</Label>
|
||||
</div>
|
||||
<div className="flex items-center gap-3">
|
||||
<RadioGroupItem value="auto" id="automatic" />
|
||||
<Label htmlFor={"automatic"} className="cursor-pointer">
|
||||
<Label htmlFor="automatic" className="cursor-pointer">
|
||||
Automatic
|
||||
</Label>
|
||||
</div>
|
||||
|
||||
@@ -102,7 +102,7 @@ export const PublishTemplateVersionDialog: FC<
|
||||
rows={5}
|
||||
/>
|
||||
|
||||
<Stack direction={"row"}>
|
||||
<Stack direction="row">
|
||||
<FormControlLabel
|
||||
label={Language.defaultCheckboxLabel}
|
||||
control={
|
||||
|
||||
Reference in New Issue
Block a user