Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: simplify git hooks #445

Merged
merged 1 commit into from Apr 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions .huskyrc
@@ -1,8 +1,7 @@
{
"hooks": {
"pre-commit": [
"yarn test && lint-staged"
],
"pre-commit": "yarn pre-commit",
"pre-push": "yarn pre-push",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
displayName: 'Typecheck all packages'
- script: |
yarn check-format
yarn format-check
displayName: 'Check code formatting'
- script: |
Expand Down
16 changes: 9 additions & 7 deletions package.json
Expand Up @@ -17,19 +17,21 @@
"url": "https://github.com/typescript-eslint/typescript-eslint/issues"
},
"scripts": {
"postinstall": "lerna bootstrap && yarn build && lerna link",
"test": "lerna run test --parallel",
"build": "lerna run build",
"clean": "lerna clean && lerna run clean",
"typecheck": "lerna run typecheck",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"cz": "git-cz",
"check-format": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"generate-contributors": "yarn ts-node ./tools/generate-contributors.ts && yarn all-contributors generate",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"integration-tests": "docker-compose -f tests/integration/docker-compose.yml up",
"kill-integration-test-containers": "docker-compose -f tests/integration/docker-compose.yml down -v --rmi local",
"generate-contributors": "yarn ts-node ./tools/generate-contributors.ts && yarn all-contributors generate"
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn lint && yarn typecheck && yarn format-check",
"postinstall": "lerna bootstrap && yarn build && lerna link",
"test": "lerna run test --parallel",
"typecheck": "lerna run typecheck"
},
"config": {
"commitizen": {
Expand Down