generated from nhcarrigan/template
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
|
import NaomisConifg from "@nhcarrigan/eslint-config";
|
||
|
|
||
|
export default [
|
||
|
...NaomisConifg,
|
||
|
{
|
||
|
rules: {
|
||
|
"@typescript-eslint/naming-convention": "off",
|
||
|
"max-lines": "off",
|
||
|
"max-lines-per-function": "off",
|
||
|
"max-statements": "off",
|
||
|
}
|
||
|
}
|
||
|
]
|