Skip to content

Commit ea949cb

Browse files
authored
Update ruff.toml
1 parent a7559de commit ea949cb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ruff.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ exclude = [
3232
line-length = 120
3333
indent-width = 4
3434

35-
# Assume Python 3.10
36-
target-version = "py310"
35+
# Assume Python 3.11
36+
target-version = "py311"
3737

3838
[lint]
3939
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
4040
select = [
41-
# "E",
42-
# "F",
41+
# "E", # pycodestyle
42+
# "F", # pyglake
4343
# "I", # Isort
4444
# "PERF", # Perlint
4545
# "PL", # Pylint
46-
# "RUF",
46+
# "RUF", # Ruff
4747
# "S", # Bandit
48-
# "SIM",
49-
# "UP",
50-
# "W",
48+
# "SIM", # Simplify
49+
# "UP", # Upgrade
50+
# "W", # Warning
5151
]
5252
ignore = []
5353

0 commit comments

Comments
 (0)