Skip to content
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.

chore: set up git-blame-ignore-revs #974

Merged
merged 6 commits into from
Aug 15, 2022
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# .git-blame-ignore-revs

# chore: add trailing comma lint rule (https://github.com/shapeshift/lib/pull/975)
505516c23b582ff1cd2d684b6c84a117157e3423
2 changes: 2 additions & 0 deletions .gitconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[blame]
ignoreRevsFile = .git-blame-ignore-revs
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"version:patch": "lerna version patch --yes --no-git-tag-version --no-push",
"version:minor": "lerna version minor --yes --no-git-tag-version --no-push",
"version:major": "lerna version major --yes --no-git-tag-version --no-push",
"postinstall": "patch-package"
"postinstall": "./scripts/postinstall.sh"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
Expand Down
4 changes: 4 additions & 0 deletions scripts/postinstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Add libs's git config to the local path in an idempotent way
git config --local include.path '../.gitconfig'

yarn patch-package