style: auto-format codebase with Prettier

Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
This commit is contained in:
Wuesteon 2025-11-27 18:33:16 +01:00
parent 0241f5554c
commit d36b321d9d
3952 changed files with 661498 additions and 739751 deletions

View file

@ -20,7 +20,12 @@ module.exports = {
testMatch: ['**/__tests__/**/*.test.[jt]s?(x)', '**/?(*.)+(spec|test).[jt]s?(x)'],
// Paths to ignore
testPathIgnorePatterns: ['/node_modules/', '/__tests__/utils/', '/__tests__/fixtures/', '/__tests__/mocks/'],
testPathIgnorePatterns: [
'/node_modules/',
'/__tests__/utils/',
'/__tests__/fixtures/',
'/__tests__/mocks/',
],
// Transform ignore patterns for React Native modules
transformIgnorePatterns: [

View file

@ -21,7 +21,13 @@ export default defineConfig({
include: ['src/**/*.{test,spec}.{js,ts}'],
// Exclude patterns
exclude: ['node_modules/**', 'dist/**', '**/*.d.ts', '**/__tests__/fixtures/**', '**/__tests__/utils/**'],
exclude: [
'node_modules/**',
'dist/**',
'**/*.d.ts',
'**/__tests__/fixtures/**',
'**/__tests__/utils/**',
],
// Test environment
environment: 'node',