generated from nhcarrigan/template
20 lines
604 B
JavaScript
20 lines
604 B
JavaScript
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",
|
|
}
|
|
}
|
|
] |