Skip to content

Commit 3d9678e

Browse files
committed
Remove packages from linting themselves in ci as its done at the 'top level'
1 parent 12049b7 commit 3d9678e

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

packages/pg-cursor/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"test": "test"
88
},
99
"scripts": {
10-
"test": "mocha && eslint .",
11-
"lint": "eslint ."
10+
"test": "mocha"
1211
},
1312
"repository": {
1413
"type": "git",

packages/pg-query-stream/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"description": "Postgres query result returned as readable stream",
55
"main": "index.js",
66
"scripts": {
7-
"test": "mocha",
8-
"lint": "eslint ."
7+
"test": "mocha"
98
},
109
"repository": {
1110
"type": "git",

packages/pg/package.json

+1-8
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,11 @@
3232
"async": "0.9.0",
3333
"bluebird": "3.5.2",
3434
"co": "4.6.0",
35-
"eslint": "^6.0.1",
36-
"eslint-config-standard": "^13.0.1",
37-
"eslint-plugin-import": "^2.18.1",
38-
"eslint-plugin-node": "^9.1.0",
39-
"eslint-plugin-promise": "^4.2.1",
40-
"eslint-plugin-standard": "^4.0.0",
4135
"pg-copy-streams": "0.3.0"
4236
},
4337
"minNativeVersion": "2.0.0",
4438
"scripts": {
45-
"test": "make test-all",
46-
"lint": "make lint"
39+
"test": "make test-all"
4740
},
4841
"files": [
4942
"lib",

0 commit comments

Comments
 (0)