Files
dsa/eslint.config.js
naomi a50c19990f
Node.js CI / Lint and Test (push) Successful in 48s
feat: daily challenges and a lab
2025-11-24 11:09:36 -08:00

22 lines
447 B
JavaScript

import NaomisConfig from "@nhcarrigan/eslint-config";
export default [
...NaomisConfig,
{
rules: {
"max-lines-per-function": "off",
"max-depth": "off",
"max-statements": "off",
"complexity": "off",
"unicorn/no-array-reduce": "off",
},
},
{
files: ["src/**/*.spec.ts"],
rules: {
"max-nested-callbacks": "off",
"@typescript-eslint/consistent-type-assertions": "off",
},
},
];