Skip to content

Commit 8d94f34

Browse files
committed
feat: add ruff format configuration to pyproject.toml
- configure quote style to double quotes - set indent style to spaces - enable magic trailing comma formatting - set line ending to LF
1 parent 641db42 commit 8d94f34

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,9 @@ target-version = "py39"
6363

6464
[tool.ruff.lint]
6565
select = ["E", "F", "W", "I", "N", "UP", "B"]
66+
67+
[tool.ruff.format]
68+
quote-style = "double"
69+
indent-style = "space"
70+
skip-magic-trailing-comma = false
71+
line-ending = "lf"

0 commit comments

Comments
 (0)