feat: initial prototype
Node.js CI / Lint and Test (push) Failing after 1m0s

This commit is contained in:
2025-09-22 16:45:38 -07:00
parent b5c1ec7fa0
commit 03c559b6cf
23 changed files with 8445 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import NaomisConfig from '@nhcarrigan/eslint-config';
export default [
...NaomisConfig,
{
files: ["test/**/*.spec.ts"],
rules: {
"@typescript-eslint/consistent-type-assertions": "off",
"complexity": "off",
"no-await-in-loop": "off",
"vitest/no-conditional-expect": "off",
"max-lines-per-function": "off",
"max-statements": "off",
"vitest/no-conditional-in-test": "off",
"no-console": "off",
"max-lines": "off",
"max-nested-callbacks": "off",
}
}
]