generated from nhcarrigan/template
18 lines
441 B
JavaScript
18 lines
441 B
JavaScript
import NaomisConfig from '@nhcarrigan/eslint-config';
|
|
|
|
export default [
|
|
...NaomisConfig,
|
|
{
|
|
files: ["src/routes/*.ts"],
|
|
rules: {
|
|
"max-lines-per-function": "off",
|
|
}
|
|
},
|
|
{
|
|
files: ["src/routes/*.ts"],
|
|
rules: {
|
|
// We turn this off so we can use the async plugin syntax without needing to await.
|
|
"@typescript-eslint/require-await": "off",
|
|
}
|
|
}
|
|
] |