From 352724d449b6c0bc36a8d83af7a11f729675ae02 Mon Sep 17 00:00:00 2001 From: humanscape-henry Date: Wed, 20 Jan 2021 17:39:09 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20readme=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index 2089604..55173c8 100644 --- a/README.md +++ b/README.md @@ -1 +1,31 @@ # ESLint Configurations for Humanscape + +### Installation & Usage + +1. Install `@humanscape/eslint-config`. + +Using `npm` + +`$ npm install --save-dev @humanscape/eslint-config` + +Using `yarn` + +`$ yarn add -D @humanscape/eslint-config` + +2. Add some ESLint config to `package.json`. + +``` +{ + "eslintConfig": { + "extends": "@humanscape" + } +} +``` + +or your preferred config file. (ex. `.eslintrc`) + +``` +{ + "extends": "@humanscape" +} +```