feat: restore scan quality, implement standardized naming, and add cask_type integration

This commit is contained in:
2026-01-05 23:33:10 +01:00
parent 21ca704abc
commit 68ac857091
22 changed files with 576 additions and 1020 deletions

15
.eslintrc.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": [
"next/core-web-vitals"
],
"plugins": [
"security"
],
"rules": {
"security/detect-object-injection": "warn",
"security/detect-unsafe-regex": "warn",
"security/detect-eval-with-expression": "error",
"security/detect-non-literal-fs-filename": "warn",
"security/detect-child-process": "warn"
}
}