From 452f216968ca8ad4a1f3eedaffa2741b03019eb0 Mon Sep 17 00:00:00 2001 From: rmoralp Date: Mon, 26 Dec 2022 17:55:01 +0100 Subject: [PATCH] feat: improve lint usage --- .eslintrc.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 5b999ef..34db7ab 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,10 +1,10 @@ module.exports = { root: true, // This tells ESLint to load the config from the package `eslint-config-custom` - extends: ["custom"], + extends: ['./node_modules/@maons/lint'], settings: { next: { - rootDir: ["apps/*/"], - }, - }, -}; + rootDir: ['apps/*/'] + } + } +}