Upgrade linter and formatter to Ultracite (#1224)

This commit is contained in:
Hayden Bleasel 2025-09-20 12:47:10 -07:00 committed by GitHub
parent b1d254283b
commit 0e320b391d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
177 changed files with 6951 additions and 8342 deletions

View file

@ -1,13 +1,13 @@
import { defineConfig, devices } from '@playwright/test';
import { defineConfig, devices } from "@playwright/test";
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
import { config } from 'dotenv';
import { config } from "dotenv";
config({
path: '.env.local',
path: ".env.local",
});
/* Use process.env.PORT by default and fallback to port 3000 */
@ -23,7 +23,7 @@ const baseURL = `http://localhost:${PORT}`;
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
testDir: "./tests",
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
@ -33,14 +33,14 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 2 : 8,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: "html",
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'retain-on-failure',
trace: "retain-on-failure",
},
/* Configure global timeout for each test */
@ -52,17 +52,17 @@ export default defineConfig({
/* Configure projects */
projects: [
{
name: 'e2e',
name: "e2e",
testMatch: /e2e\/.*.test.ts/,
use: {
...devices['Desktop Chrome'],
...devices["Desktop Chrome"],
},
},
{
name: 'routes',
name: "routes",
testMatch: /routes\/.*.test.ts/,
use: {
...devices['Desktop Chrome'],
...devices["Desktop Chrome"],
},
},
@ -99,7 +99,7 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: {
command: 'pnpm dev',
command: "pnpm dev",
url: `${baseURL}/ping`,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,