From 59dc70e09efded4a8995c099cc14be53d6a1653f Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 28 Oct 2020 18:05:38 -1000 Subject: [PATCH] remove eslint-plugin-standard Fixes: https://github.com/standard/standard/issues/1316 --- README.md | 1 - docs/webstorm.md | 4 ++-- package.json | 1 - 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4b158b66..b14da10bf 100644 --- a/README.md +++ b/README.md @@ -786,7 +786,6 @@ Here are some important packages in the `standard` ecosystem: - **[standard-engine](https://github.com/standard/standard-engine)** - cli engine for arbitrary eslint rules - **[eslint-config-standard](https://github.com/standard/eslint-config-standard)** - eslint rules for standard - **[eslint-config-standard-jsx](https://github.com/standard/eslint-config-standard-jsx)** - eslint rules for standard (JSX) - - **[eslint-plugin-standard](https://github.com/standard/eslint-plugin-standard)** - custom eslint rules for standard (not part of eslint core) - **[eslint](https://github.com/eslint/eslint)** - the linter that powers standard - **[snazzy](https://github.com/standard/snazzy)** - pretty terminal output for standard - **[standard-www](https://github.com/standard/standard-www)** - code for https://standardjs.com diff --git a/docs/webstorm.md b/docs/webstorm.md index 6b83cc6ac..15b04b8eb 100644 --- a/docs/webstorm.md +++ b/docs/webstorm.md @@ -39,10 +39,10 @@ If you still prefer to configure `standard` manually, use the following guide. 5. You may install dependencies and config globally or locally and with support of ES7 or without it - **Local** install: - - `npm install --save-dev eslint-config-standard eslint-config-standard-jsx eslint-plugin-promise eslint-plugin-react eslint-plugin-standard` + - `npm install --save-dev eslint-config-standard eslint-config-standard-jsx eslint-plugin-promise eslint-plugin-react` - `echo '{"extends": ["standard", "standard-jsx"]}' > .eslintrc` - **Global** install: - - `npm install --global eslint-config-standard eslint-config-standard-jsx eslint-plugin-promise eslint-plugin-react eslint-plugin-standard` + - `npm install --global eslint-config-standard eslint-config-standard-jsx eslint-plugin-promise eslint-plugin-react` - `echo '{"extends": ["standard", "standard-jsx"]}' > ~/.eslintrc` Be aware: The second command above will overwrite an existing `.eslintrc` if one exists. diff --git a/package.json b/package.json index f92408261..b9d7fb08b 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ "eslint-plugin-node": "~11.1.0", "eslint-plugin-promise": "~4.2.1", "eslint-plugin-react": "~7.21.5", - "eslint-plugin-standard": "~4.0.2", "standard-engine": "^13.0.0" }, "devDependencies": {