feat: bunch of algos
Node.js CI / Lint and Test (push) Successful in 40s

This commit is contained in:
2025-11-22 18:14:36 -08:00
parent a12aef0c0b
commit 5061d00f8e
9 changed files with 455 additions and 14 deletions
+17 -14
View File
@@ -1,17 +1,20 @@
import NaomisConfig from '@nhcarrigan/eslint-config';
import NaomisConfig from "@nhcarrigan/eslint-config";
export default [
...NaomisConfig,
{
rules: {
'max-lines-per-function': 'off',
'max-statements': 'off',
}
...NaomisConfig,
{
rules: {
"max-lines-per-function": "off",
"max-depth": "off",
"max-statements": "off",
"complexity": "off",
},
{
files: ['src/**/*.spec.ts'],
rules: {
'max-nested-callbacks': 'off',
}
}
];
},
{
files: ["src/**/*.spec.ts"],
rules: {
"max-nested-callbacks": "off",
"@typescript-eslint/consistent-type-assertions": "off",
},
},
];