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