MaartenGr / BERTopic

Leveraging BERT and c-TF-IDF to create easily interpretable topics.
https://maartengr.github.io/BERTopic/
MIT License
6.2k stars 767 forks source link

Add git blame ignore #2068

Closed freddyheppell closed 5 months ago

freddyheppell commented 5 months ago

Adds git blame ignore to prevent most code in the repo being attributed to #2033.

GitHub will pick up on this by default.

Using Git locally, you can use this by passing the --ignore-revs-file argument e.g.

$ git blame bertopic/_bertopic.py --ignore-revs-file .git-blame-ignore-revs

or run this config to use by default

$ git config blame.ignoreRevsFile .git-blame-ignore-revs
MaartenGr commented 5 months ago

Awesome, thanks for the PR!