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", } } ]