File tree Expand file tree Collapse file tree 5 files changed +18
-9
lines changed
Expand file tree Collapse file tree 5 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 1+ # Default settings for Ruff in CPython
2+
3+ # PYTHON_FOR_REGEN
4+ target-version = " py310"
5+
6+ # PEP 8
7+ line-length = 79
8+
9+ # Enable automatic fixes by default.
10+ # To override this, use ``fix = false`` in a subdirectory's config file
11+ # or ``--no-fix`` on the command line.
12+ fix = true
Original file line number Diff line number Diff line change 1+ extend = " ../.ruff.toml" # Inherit the project-wide settings
2+
13target-version = " py312" # Align with the version in oldest_supported_sphinx
2- fix = true
3- output-format = " full"
4- line-length = 79
54extend-exclude = [
65 " includes/*" ,
76 # Temporary exclusions:
Original file line number Diff line number Diff line change 1- fix = true
1+ extend = " ../../.ruff.toml" # Inherit the project-wide settings
2+
23extend-exclude = [
34 # Excluded (run with the other AC files in its own separate ruff job in pre-commit)
45 " test_clinic.py" ,
Original file line number Diff line number Diff line change 1- target-version = " py310"
2- fix = true
3- line-length = 79
1+ extend = " ../../.ruff.toml" # Inherit the project-wide settings
42
53[lint ]
64select = [
Original file line number Diff line number Diff line change 1- target-version = " py310"
2- fix = true
1+ extend = " ../../.ruff.toml" # Inherit the project-wide settings
32
43[lint ]
54select = [
You can’t perform that action at this time.
0 commit comments