aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-yarn/packages/eslint-config-custom/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-yarn/packages/eslint-config-custom/index.js')
-rw-r--r--examples/with-yarn/packages/eslint-config-custom/index.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/with-yarn/packages/eslint-config-custom/index.js b/examples/with-yarn/packages/eslint-config-custom/index.js
new file mode 100644
index 0000000..6024e8d
--- /dev/null
+++ b/examples/with-yarn/packages/eslint-config-custom/index.js
@@ -0,0 +1,6 @@
+module.exports = {
+ extends: ["next", "turbo", "prettier"],
+ rules: {
+ "@next/next/no-html-link-for-pages": "off",
+ },
+};