eslint-config/eslint.config.js
Naomi Carrigan 70fcc1a49a
feat: add testing for the global configs
We want to make sure we aren't missing anything important.
2024-09-25 22:31:08 -07:00

18 lines
439 B
JavaScript

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",
"@typescript-eslint/consistent-type-assertions": "off",
"max-lines-per-function": "off",
"complexity": "off",
"max-nested-callbacks": "off"
},
},
];