2024-07-28 21:11:31 +00:00
|
|
|
import naomisRules from "./prod/index.js";
|
|
|
|
|
|
|
|
export default [
|
|
|
|
...naomisRules,
|
|
|
|
{
|
|
|
|
rules: {
|
|
|
|
"@typescript-eslint/naming-convention": "off",
|
|
|
|
"import/no-default-export": "off",
|
|
|
|
"import/namespace": "off",
|
|
|
|
"import/no-deprecated": "off",
|
2024-09-25 22:31:08 -07:00
|
|
|
"@typescript-eslint/consistent-type-assertions": "off",
|
|
|
|
"max-lines-per-function": "off",
|
|
|
|
"complexity": "off",
|
|
|
|
"max-nested-callbacks": "off"
|
2024-07-28 21:11:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|