Show More
@@ -0,0 +1,24 b'' | |||||
|
1 | [project] | |||
|
2 | name = "rhodecode-vcsserver" | |||
|
3 | description = "" | |||
|
4 | requires-python = ">=3.10" | |||
|
5 | version = "5.0.0" | |||
|
6 | ||||
|
7 | [tool.ruff] | |||
|
8 | select = [ | |||
|
9 | # Pyflakes | |||
|
10 | "F", | |||
|
11 | # Pycodestyle | |||
|
12 | "E", | |||
|
13 | "W", | |||
|
14 | # isort | |||
|
15 | "I001" | |||
|
16 | ] | |||
|
17 | ignore = [ | |||
|
18 | "E501", # line too long, handled by black | |||
|
19 | ] | |||
|
20 | # Same as Black. | |||
|
21 | line-length = 120 | |||
|
22 | ||||
|
23 | [tool.ruff.isort] | |||
|
24 | known-first-party = ["vcsserver"] |
General Comments 0
You need to be logged in to leave comments.
Login now