refactor: reorganize project structure and improve code quality

- Move CI/CD configs to config/ci/ directory
- Reorganize scripts into categorized directories (deployment, monitoring, testing, utils)
- Consolidate documentation into docs/ directory with proper structure
- Update linting and testing configurations
- Remove obsolete test reports and performance summaries
- Add new documentation for code quality tools and contact form security
- Improve project organization and maintainability
- Fix lint-staged config to only lint JS/TS files
- Disable react/react-in-jsx-scope rule for Next.js compatibility
- Ignore scripts and test config directories in ESLint
This commit is contained in:
张翔
2026-03-24 13:38:58 +08:00
parent c06ac08510
commit 498bb3a3c8
62 changed files with 5473 additions and 6498 deletions
+3 -3
View File
@@ -43,7 +43,7 @@ pipeline:
- cd e2e
- npm ci
- npx playwright install --with-deps chromium
- npm run test:regression
- npm run test:tier:standard
when:
event:
- push
@@ -91,7 +91,7 @@ pipeline:
- cd e2e
- npm ci
- npx playwright install --with-deps chromium
- npm run test:visual
- npx playwright test --grep @visual
when:
event:
- push
@@ -107,7 +107,7 @@ pipeline:
- cd e2e
- npm ci
- npx playwright install --with-deps chromium
- npm run test:a11y
- npx playwright test --grep @accessibility
when:
event:
- push