Skip to content

Lint: Create a project-wide .ruff.toml settings file #133124

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

Merged
merged 4 commits into from
May 1, 2025
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
12 changes: 12 additions & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Default settings for Ruff in CPython

# PYTHON_FOR_REGEN
target-version = "py310"

# PEP 8
line-length = 79

# Enable automatic fixes by default.
# To override this, use ``fix = false`` in a subdirectory's config file
# or ``--no-fix`` on the command line.
fix = true
5 changes: 2 additions & 3 deletions Doc/.ruff.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
extend = "../.ruff.toml" # Inherit the project-wide settings

target-version = "py312" # Align with the version in oldest_supported_sphinx
fix = true
output-format = "full"
line-length = 79
extend-exclude = [
"includes/*",
# Temporary exclusions:
Expand Down
3 changes: 2 additions & 1 deletion Lib/test/.ruff.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
fix = true
extend = "../../.ruff.toml" # Inherit the project-wide settings

extend-exclude = [
# Excluded (run with the other AC files in its own separate ruff job in pre-commit)
"test_clinic.py",
Expand Down
4 changes: 1 addition & 3 deletions Tools/build/.ruff.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
target-version = "py310"
fix = true
line-length = 79
extend = "../../.ruff.toml" # Inherit the project-wide settings

[lint]
select = [
Expand Down
3 changes: 1 addition & 2 deletions Tools/clinic/.ruff.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
target-version = "py310"
fix = true
extend = "../../.ruff.toml" # Inherit the project-wide settings

[lint]
select = [
Expand Down
Loading