Skip to content

Commit

Permalink
remove eslint-plugin-standard
Browse files Browse the repository at this point in the history
  • Loading branch information
feross committed Oct 29, 2020
1 parent 15931a4 commit 0f4d3f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The above steps will automatically set up an ESLint configuration and install th
**If you want to set up the config manually**, run the following command:

```bash
npm install --save-dev eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node
npm install --save-dev eslint-config-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node
```

Then, add this to your `.eslintrc` file:
Expand Down
8 changes: 3 additions & 5 deletions eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
"plugins": [
"import",
"node",
"promise",
"standard"
"promise"
],

"globals": {
Expand Down Expand Up @@ -231,9 +230,8 @@
"node/no-new-require": "error",
"node/no-path-concat": "error",
"node/process-exit-as-throw": "error",
"node/no-callback-literal": "error",

"promise/param-names": "error",

"standard/no-callback-literal": "error"
"promise/param-names": "error"
}
}
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"tape": "^5.0.1"
},
"homepage": "https://github.com/standard/eslint-config-standard",
Expand Down Expand Up @@ -51,8 +50,7 @@
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2"
"eslint-plugin-promise": "^4.2.1"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 0f4d3f2

Please sign in to comment.