Skip to content

Commit 0f4d3f2

Browse files
committedOct 29, 2020
remove eslint-plugin-standard
Fixes: standard/standard#1316
1 parent 15931a4 commit 0f4d3f2

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The above steps will automatically set up an ESLint configuration and install th
4141
**If you want to set up the config manually**, run the following command:
4242

4343
```bash
44-
npm install --save-dev eslint-config-standard eslint-plugin-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node
44+
npm install --save-dev eslint-config-standard eslint-plugin-promise eslint-plugin-import eslint-plugin-node
4545
```
4646

4747
Then, add this to your `.eslintrc` file:

‎eslintrc.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
"plugins": [
1616
"import",
1717
"node",
18-
"promise",
19-
"standard"
18+
"promise"
2019
],
2120

2221
"globals": {
@@ -231,9 +230,8 @@
231230
"node/no-new-require": "error",
232231
"node/no-path-concat": "error",
233232
"node/process-exit-as-throw": "error",
233+
"node/no-callback-literal": "error",
234234

235-
"promise/param-names": "error",
236-
237-
"standard/no-callback-literal": "error"
235+
"promise/param-names": "error"
238236
}
239237
}

‎package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"eslint-plugin-import": "^2.22.1",
1616
"eslint-plugin-node": "^11.1.0",
1717
"eslint-plugin-promise": "^4.2.1",
18-
"eslint-plugin-standard": "^4.0.2",
1918
"tape": "^5.0.1"
2019
},
2120
"homepage": "https://github.com/standard/eslint-config-standard",
@@ -51,8 +50,7 @@
5150
"eslint": "^7.12.1",
5251
"eslint-plugin-import": "^2.22.1",
5352
"eslint-plugin-node": "^11.1.0",
54-
"eslint-plugin-promise": "^4.2.1",
55-
"eslint-plugin-standard": "^4.0.2"
53+
"eslint-plugin-promise": "^4.2.1"
5654
},
5755
"repository": {
5856
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.