Skip to content

Commit

Permalink
Reformat tests/ with black
Browse files Browse the repository at this point in the history
  • Loading branch information
arichardson committed Aug 9, 2023
1 parent e45fa1c commit e395dd0
Show file tree
Hide file tree
Showing 6 changed files with 1,176 additions and 605 deletions.
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ exclude = [
]
line-length = 120

[tool.black]
line-length = 120
target-version = ['py36']
# 'extend-exclude' excludes files or directories in addition to the defaults
# Currently reformatting pycheribuild/ results in lots of weird formatting, so
# let's restrict this to the other files for now.
extend-exclude = '''3rdparty|\.pytype|pycheribuild'''
preview = true
required-version = '23.7.0'

[tool.ruff.isort]
relative-imports-order = "closest-to-furthest"
known-local-folder = ["pycheribuild"]
Loading

0 comments on commit e395dd0

Please sign in to comment.