refactor: centralize project validation and nags into validation rules

This commit is contained in:
tdgao
2026-08-27 22:03:04 -06:00
parent 1f3f37c86c
commit 18c1f31514
83 changed files with 2752 additions and 3428 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
"scripts": {
"lint": "eslint . && prettier --check .",
"fix": "eslint . --fix && prettier --write .",
"test": "node --test src/validators/*/tests.ts",
"test": "node --test src/validators/*/tests.ts src/validation-rules/tests.ts",
"intl:extract": "formatjs extract \"**/*.{vue,ts,tsx,js,jsx,mts,cts,mjs,cjs}\" --ignore \"**/*.d.ts\" --ignore \"node_modules/**/*\" --out-file src/locales/en-US/index.json --preserve-whitespace",
"intl:prune-local": "pnpm -w scripts i18n-icu-contract prune-local --scope packages/moderation"
},