Skip to content

Commit 5fa73f3

Browse files
committed
Add pyproject.toml
1 parent e4b4a38 commit 5fa73f3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[tool.ruff]
2+
select=["E", "F", "UP", "I001"]
3+
ignore=[
4+
# Recommened ignores by ruff when using formatter
5+
"E501",
6+
"W191",
7+
"E111",
8+
"E114",
9+
"E117",
10+
"D206",
11+
"D300",
12+
"Q000",
13+
"Q001",
14+
"Q002",
15+
"Q003",
16+
"COM812",
17+
"COM819",
18+
"ISC001",
19+
"ISC002",
20+
]
21+
line-length = 100
22+
fix = true

0 commit comments

Comments
 (0)