Skip to content

Commit eb33aa1

Browse files
build: activate linter in ci/qa for packages that were missing it
1 parent ece942b commit eb33aa1

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

packages/embarkjs/snark/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,8 @@
5050
"_typecheck": "npm run solo -- typecheck",
5151
"ci": "npm run qa",
5252
"clean": "npm run reset",
53-
"lint": "npm-run-all lint:*",
54-
"// lint:js": "eslint test/",
55-
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
56-
"qa": "npm-run-all _typecheck _build",
53+
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
54+
"qa": "npm-run-all lint _typecheck _build",
5755
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
5856
"solo": "embark-solo"
5957
},
@@ -81,4 +79,4 @@
8179
"npm": ">=6.11.3",
8280
"yarn": ">=1.19.1"
8381
}
84-
}
82+
}

packages/embarkjs/swarm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"ci": "npm run qa",
4545
"clean": "npm run reset",
4646
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
47-
"qa": "npm-run-all _typecheck _build",
47+
"qa": "npm-run-all lint _typecheck _build",
4848
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
4949
"solo": "embark-solo"
5050
},

packages/embarkjs/web3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"ci": "npm run qa",
4545
"clean": "npm run reset",
4646
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
47-
"qa": "npm-run-all _typecheck _build",
47+
"qa": "npm-run-all lint _typecheck _build",
4848
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
4949
"solo": "embark-solo"
5050
},

packages/embarkjs/whisper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"ci": "npm run qa",
4545
"clean": "npm run reset",
4646
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
47-
"qa": "npm-run-all _typecheck _build",
47+
"qa": "npm-run-all lint _typecheck _build",
4848
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
4949
"solo": "embark-solo"
5050
},

0 commit comments

Comments
 (0)