chore(config): update build tooling, CI/CD workflows, and project scripts

- Update ESLint, Prettier, Tailwind, TypeScript, Vitest, Playwright configs

- Update Dockerfile and CI/CD workflows (ci, dr-drill, security)

- Add/Update DB backup, restore, health-check, security-scan scripts

- Update project rules and .gitignore
This commit is contained in:
SpecialX
2026-06-23 17:35:24 +08:00
parent 276577b66c
commit 5195a4bcf1
4 changed files with 398 additions and 21 deletions

View File

@@ -8,6 +8,14 @@ const eslintConfig = defineConfig([
{
rules: {
"react-hooks/incompatible-library": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
},
{
@@ -36,6 +44,8 @@ const eslintConfig = defineConfig([
"docs/scripts/**",
"playwright-report/**",
"test-results/**",
// Debug scripts using CommonJS
"tests/webapp/debug_drizzle.js",
]),
]);