-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add tox.ini
to the default discovered config files (right after setup.cfg)
#9728
Merged
DanielNoord
merged 11 commits into
pylint-dev:main
from
mbyrnepr2:tox_ini_default_config_file
Jun 18, 2024
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
63ed122
Fix a bug where a ``tox.ini`` file with pylint configuration was ignoβ¦
mbyrnepr2 b8b4444
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] d5f4bbf
Pylint: Use set for membership test.
mbyrnepr2 307a4c3
Refactor - no need for constant.
mbyrnepr2 30850c7
Update tests/config/test_find_default_config_files.py
mbyrnepr2 64e2c66
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 5084f0f
Refactor the test using Pierre's suggestion.
mbyrnepr2 6aeba71
Identify Pylint configuration in `.ini` and `.cfg` files where the
mbyrnepr2 99195b4
Update news fragment to include the enhancement to the `Pylint`
mbyrnepr2 9e597be
Rename the function to be more explicit.
mbyrnepr2 e0a456d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 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 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Fix a bug where a ``tox.ini`` file with pylint configuration was ignored and it exists in the current directory. | ||
|
||
``.cfg`` and ``.ini`` files containing a ``Pylint`` configuration may now use a section named ``[pylint]``. This enhancement impacts the scenario where these file types are used as defaults when they are present and have not been explicitly referred to, using the ``--rcfile`` option. | ||
|
||
Closes #9727 |
This file contains 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 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.
We should probably include the change about accepted sections here as well.