From ce45856c63f1dc117cbdf0fb03156d61bbb8aad1 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Fri, 28 Jul 2023 20:31:58 +0200 Subject: [PATCH] Updated config examples in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd87aa8..df0e762 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Please consider the following example. You should replace `` with the name ```javascript module.exports = { - extends: './node_modules/yeslint/config/.js', + extends: './node_modules/@garraflavatra/yeslint/config/.js', }; ``` @@ -44,7 +44,7 @@ Or add this to your `package.json` file: ```json "eslintConfig": { - "extends": "./node_modules/yeslint/config/.js" + "extends": "./node_modules/@garraflavatra/yeslint/config/.js" } ```