build: activate linter in ci/qa for packages that were missing it

This commit is contained in:
Michael Bradley, Jr 2020-03-19 14:46:05 -05:00 committed by Michael Bradley
parent ece942b3a8
commit eb33aa16ee
4 changed files with 6 additions and 8 deletions

View File

@ -50,10 +50,8 @@
"_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "npm-run-all lint:*",
"// lint:js": "eslint test/",
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all _typecheck _build",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo"
},
@ -81,4 +79,4 @@
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}
}

View File

@ -44,7 +44,7 @@
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
"qa": "npm-run-all _typecheck _build",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo"
},

View File

@ -44,7 +44,7 @@
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
"qa": "npm-run-all _typecheck _build",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo"
},

View File

@ -44,7 +44,7 @@
"ci": "npm run qa",
"clean": "npm run reset",
"lint": "eslint --ignore-pattern '!.*.js' .babelrc.js src/",
"qa": "npm-run-all _typecheck _build",
"qa": "npm-run-all lint _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo"
},