Skip to content

Commit

Permalink
add formatting exclusions properly in toml (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
jGaboardi committed Jan 14, 2023
1 parent 8d02fbf commit 2638528
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ parentdir_prefix = "spaghetti-"
[tool.isort]
profile = "black"
src_paths = ["spaghetti"]
skip = [
"docs/conf.py",
"versioneer.py",
"spaghetti/_version.py"
]

[tool.flake8]
max_line_length = 88
Expand All @@ -124,3 +129,10 @@ exclude = [

[tool.black]
line-length = 88
extend-exclude = '''
(
docs/conf.py
"versioneer.py",
"spaghetti/_version.py"
)
'''

0 comments on commit 2638528

Please sign in to comment.