forms/client/eslint.config.js
Naomi Carrigan 30d9185d3a
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 1m53s
chore: fuck it, no tests
We'd rather use vitest anyway.
2025-02-17 13:59:01 -08:00

22 lines
793 B
JavaScript

import NaomisConfig from "@nhcarrigan/eslint-config";
export default [
...NaomisConfig,
{
rules: {
"no-console": "off",
"new-cap": "off",
"@typescript-eslint/naming-convention": "off",
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param": "off",
"jsdoc/require-returns": "off",
"@typescript-eslint/no-useless-constructor": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-extraneous-class": "off",
"stylistic/no-multi-spaces": "off",
"unicorn/filename-case": "off",
"@typescript-eslint/consistent-type-imports": "off"
},
},
]