-
-
Notifications
You must be signed in to change notification settings - Fork 288
build(.gitignore): ignore pyrightconfig.json
and poetry.toml
#1483
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
Open
gbaian10
wants to merge
30
commits into
commitizen-tools:refactors
Choose a base branch
from
gbaian10:gitignore-update
base: refactors
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,155
−909
Open
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
985b8b4
refactor: improve readability and fix typos
bearomorphism 6bba6e7
refactor(version_scheme): cleanup
bearomorphism 1088d54
refactor(commit): simplify call
bearomorphism 220eb0c
test(commit): when nothing is added to commit
bearomorphism 9710307
refactor(git): code cleanup and better test coverage
bearomorphism 040f4a4
test(git): add test for from_rev_and_commit
bearomorphism 416db96
docs(git): from_rev_and_commit docstring
bearomorphism 1955293
refactor(EOLType): add eol enum back and reorganize methods
bearomorphism 2aa74b2
refactor(git): refactor get_tag_names
bearomorphism 619479d
refactor(changelog): minor cleanup
bearomorphism 75d0029
refactor(BaseConfig): use setter
bearomorphism afce314
build(poetry): upgrade mypy version to ^1.15.0
bearomorphism 3176086
refactor(bump): add type for out, replace function with re escape
bearomorphism f85d2cf
refactor(bump): clean up
bearomorphism a75ecac
test(bump): improve test coverage
bearomorphism 60f2f0d
fix(defaults): add non-capitalized default constants back and depreca…
bearomorphism 1dc19fa
refactor: misc cleanup
bearomorphism 41f7527
refactor(git): extract _create_commit_cmd_string
bearomorphism 2cc2c12
test(test_git): mock os
bearomorphism 2de45e9
refactor(cli): early return and improve test coverage
bearomorphism 56ea076
build(termcolor): remove termcolor <3 restriction
bearomorphism a02aab0
build: specify importlib-metadata version to fix unit tests
bearomorphism 81f2181
build(poetry): regenerate lock file
Lee-W c0220cd
refactor(changelog): better typing, yield
bearomorphism 7ab7f55
build(deps-dev): bump mypy to 1.16.0
gbaian10 5c9932d
refactor(mypy): remove `unused-ignore`
gbaian10 dedd29c
refactor(cli.py): add type hints
gbaian10 3a88f03
refactor: add comment clarifying `no_raise` parsing to `list[int]`
gbaian10 59fd3f5
refactor: remove `TypeError` handling since `Python >=3.9` is required
gbaian10 852b71d
build(.gitignore): ignore `pyrightconfig.json` and `poetry.toml`
gbaian10 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,3 +113,10 @@ venv.bak/ | |
|
||
# ruff | ||
.ruff_cache | ||
|
||
# LSP config files | ||
pyrightconfig.json | ||
|
||
### Python Patch ### | ||
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration | ||
poetry.toml | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm kinda curious what the behavior you decide but we shouldn't add it to commitizen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would suggest adding it to your
~/.gitignore
instead. I don't like to add things to ignore that's not directly related to commitizen (yep ".vscode" is kinda not my taste either)