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", "_typecheck": "npm run solo -- typecheck",
"ci": "npm run qa", "ci": "npm run qa",
"clean": "npm run reset", "clean": "npm run reset",
"lint": "npm-run-all lint:*", "lint": "tslint -c tslint.json \"src/**/*.ts\"",
"// lint:js": "eslint test/", "qa": "npm-run-all lint _typecheck _build",
"lint:ts": "tslint -c tslint.json \"src/**/*.ts\"",
"qa": "npm-run-all _typecheck _build",
"reset": "npx rimraf coverage dist embarkjs-*.tgz package", "reset": "npx rimraf coverage dist embarkjs-*.tgz package",
"solo": "embark-solo" "solo": "embark-solo"
}, },

View File

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

View File

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

View File

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