diff options
Diffstat (limited to 'examples/with-gatsby/packages/eslint-config-custom/next.js')
| -rw-r--r-- | examples/with-gatsby/packages/eslint-config-custom/next.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/with-gatsby/packages/eslint-config-custom/next.js b/examples/with-gatsby/packages/eslint-config-custom/next.js new file mode 100644 index 0000000..c9523f1 --- /dev/null +++ b/examples/with-gatsby/packages/eslint-config-custom/next.js @@ -0,0 +1,11 @@ +module.exports = { + extends: ["next", "turbo", "prettier"], + rules: { + "@next/next/no-html-link-for-pages": "off", + }, + parserOptions: { + babelOptions: { + presets: [require.resolve("next/babel")], + }, + }, +}; |
