From 71ac3682b706cf7531c0f52bf692d1c7feecd81c Mon Sep 17 00:00:00 2001 From: Maximilien Ledoux Date: Fri, 11 Aug 2023 09:14:56 +0200 Subject: [PATCH] docs: fix wrong eslint-config name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://git.endmove.eu/IO-ProjectsOfficial/eslint-config/pulls/4 Reviewed-by: Jérémi N ‘EndMove’ --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ebf457a..84dd4ee 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ Install the package: ```bash # with yarn -yarn add -D @io-projects/eslint-config +yarn add -D @ioprojects/eslint-config # with npm -npm install --save-dev @io-projects/eslint-config +npm install --save-dev @ioprojects/eslint-config ``` ## Usage @@ -27,7 +27,7 @@ Add the following to your `.eslintrc.js` file: ```js module.exports = { extends: [ - '@io-projects/eslint-config' + '@ioprojects/eslint-config' ] } ``` @@ -39,7 +39,7 @@ Add the following to your `.eslintrc.json` file: ```json { "extends": [ - "@io-projects/eslint-config" + "@ioprojects/eslint-config" ] } ``` @@ -49,7 +49,7 @@ Add the following to your `.eslintrc.json` file: Add the following to your `.eslintrc.cjs` file: ```js -module.exports = require('@ioprojects/ui-eslint-base'); +module.exports = require('@ioprojects/eslint-config'); ``` ### Note for developers