Skip to content

Commit

Permalink
fix(commitlint): correct GIT_PARAMS argument (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Jun 16, 2018
1 parent d49de38 commit 373f549
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
"release:dry-run": "npm run release -- --dry-run"
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-empty_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
"release:dry-run": "npm run release -- --dry-run"
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/package-normal_expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint:js:fix": "npm run lint:js -- --fix",
"lint:md": "markdownlint --ignore node_modules --ignore CHANGELOG.md \"**/*.md\"",
"lint": "npm-run-all --print-name --print-label --parallel lint:*",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commitmsg": "commitlint -E GIT_PARAMS",
"precommit": "lint-staged",
"release": "standard-version",
"release:dry-run": "npm run release -- --dry-run"
Expand Down

0 comments on commit 373f549

Please sign in to comment.