infra: add linting and formatting for js projects (#230)

* wip

* wip

* wip

* format

* wip(mobile): lint and format

* cleanup

* nits

* nits

* idiomatic react

* nit

* format all root files
This commit was merged in pull request #230.
This commit is contained in:
Arjun Patel
2026-06-02 07:44:24 -07:00
committed by GitHub
parent 2fe562ce2b
commit a8a0b7db1b
258 changed files with 7822 additions and 5195 deletions
+11 -12
View File
@@ -1,9 +1,9 @@
import { type FormEvent, useState } from "react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { H3, Muted } from "@/components/ui/typography";
import { useAuthStore } from "@/stores/auth-store";
import { type FormEvent, useState } from 'react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { H3, Muted } from '@/components/ui/typography';
import { useAuthStore } from '@/stores/auth-store';
interface CodeStepProps {
email: string;
@@ -11,7 +11,7 @@ interface CodeStepProps {
}
export function CodeStep({ email, onBack }: CodeStepProps) {
const [code, setCode] = useState("");
const [code, setCode] = useState('');
const isSigningIn = useAuthStore((s) => s.isSigningIn);
const error = useAuthStore((s) => s.error);
const signIn = useAuthStore((s) => s.signIn);
@@ -31,7 +31,8 @@ export function CodeStep({ email, onBack }: CodeStepProps) {
<div className="flex flex-col gap-2">
<H3>Check your email</H3>
<Muted>
We sent a code to <strong className="text-foreground">{email}</strong>.
We sent a code to <strong className="text-foreground">{email}</strong>
.
</Muted>
</div>
@@ -52,13 +53,11 @@ export function CodeStep({ email, onBack }: CodeStepProps) {
/>
</div>
{error && (
<p className="text-sm text-destructive">{error}</p>
)}
{error && <p className="text-sm text-destructive">{error}</p>}
<div className="flex flex-col gap-2">
<Button type="submit" disabled={isSigningIn || !code}>
{isSigningIn ? "Signing in..." : "Sign in"}
{isSigningIn ? 'Signing in...' : 'Sign in'}
</Button>
<Button type="button" variant="ghost" onClick={onBack}>
Back