generated from nhcarrigan/template
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
import NaomisConfig from "@nhcarrigan/eslint-config";
|
|
|
|
export default [
|
|
...NaomisConfig,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/naming-convention": "off",
|
|
"unicorn/filename-case": "off",
|
|
"max-lines": "off",
|
|
"max-lines-per-function": "off",
|
|
complexity: "off",
|
|
"import/no-default-export": "off",
|
|
"import/extensions": ["warn", "never"],
|
|
"stylistic/max-len": "off",
|
|
},
|
|
},
|
|
];
|