Skip to content

Commit c34bcc4

Browse files
committed
Explicit definition for checked ruff rules
Default config is imported from https://docs.astral.sh/ruff/configuration/
1 parent aa8fb3a commit c34bcc4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

ruff.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[lint]
2+
select = [
3+
# https://docs.astral.sh/ruff/rules/#error-e
4+
# https://github.com/PyCQA/pycodestyle
5+
"E4",
6+
"E7",
7+
"E9",
8+
# https://docs.astral.sh/ruff/rules/#pyflakes-f
9+
# https://github.com/PyCQA/pyflakes
10+
"F",
11+
]

0 commit comments

Comments
 (0)