aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/basic/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic/.eslintrc.js')
-rw-r--r--examples/basic/.eslintrc.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/basic/.eslintrc.js b/examples/basic/.eslintrc.js
new file mode 100644
index 0000000..5b999ef
--- /dev/null
+++ b/examples/basic/.eslintrc.js
@@ -0,0 +1,10 @@
+module.exports = {
+ root: true,
+ // This tells ESLint to load the config from the package `eslint-config-custom`
+ extends: ["custom"],
+ settings: {
+ next: {
+ rootDir: ["apps/*/"],
+ },
+ },
+};