-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
[py] moved isort
, black
and docformatter
settings from tox.ini
file to pyproject.toml
#14671
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
Thank you, @sandeepsuryaprasad ! |
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Moved
isort
andblack
settings from tox.ini file to pyproject.toml.Motivation and Context
isort
andblack
settings can now be configured inpyproject.toml
(PEP 621)Types of changes
Checklist
PR Type
enhancement, configuration changes
Description
isort
,black
, anddocformatter
settings fromtox.ini
andsetup.cfg
topyproject.toml
.isort
,black
, anddocformatter
inpyproject.toml
.setup.cfg
as all pytest settings are now configured inpyproject.toml
.PRDescriptionHeader.CHANGES_WALKTHROUGH
pyproject.toml
Add isort, black, and docformatter configurations
py/pyproject.toml
isort
configuration with profile set toblack
.black
configuration with line length and target version.docformatter
configuration with recursive option.setup.cfg
Remove redundant pytest settings
py/setup.cfg
tox.ini
Remove isort configuration
py/tox.ini
isort
configuration.