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