generated from nhcarrigan/template
14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
import NaomisConfig from "@nhcarrigan/eslint-config";
|
|
|
|
export default [
|
|
...NaomisConfig,
|
|
{
|
|
rules: {
|
|
"max-lines-per-function": "off",
|
|
"max-statements": "off",
|
|
"unicorn/prefer-top-level-await": "off",
|
|
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
"complexity": "off",
|
|
}
|
|
}
|
|
] |