Skip to content

Commit 924ddd7

Browse files
committed
small ruff
1 parent 8958027 commit 924ddd7

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

ruff.toml

Lines changed: 0 additions & 1 deletion
This file was deleted.

ruff.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Ruff configuration for tschm/.config-templates
2+
3+
# Maximum line length
4+
line-length = 120
5+
6+
# Target Python version
7+
target-version = "py312"
8+
9+
[lint]
10+
# Linting rules to select
11+
select = ["D", "E", "F", "I", "N", "W", "UP"]
12+
13+
[lint.pydocstyle]
14+
# Use Google docstring convention
15+
convention = "google"
16+
17+
[format]
18+
quote-style = "double"
19+
indent-style = "space"
20+
line-ending = "auto"

0 commit comments

Comments
 (0)