Skip to content

Commit

Permalink
Merge pull request #3816 from zdc/T6583-current
Browse files Browse the repository at this point in the history
ruff: T6583: Added settings for ruff
  • Loading branch information
dmbaturin authored Jul 15, 2024
2 parents 79d5230 + 3f0e48b commit 88878c9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Same as Black.
line-length = 88
indent-width = 4

# Assume Python 3.11
target-version = "py311"

[format]
quote-style = "single"

# Like Black, indent with spaces, rather than tabs.
indent-style = "space"

# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false

# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"

0 comments on commit 88878c9

Please sign in to comment.