Skip to content

Commit

Permalink
ruff excluded all cases that still need to be cleaned #102
Browse files Browse the repository at this point in the history
  • Loading branch information
bensteUEM committed Oct 7, 2024
1 parent d379894 commit 628414a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
26 changes: 25 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,31 @@ output-format = "grouped"
select = [
"ALL",
]
ignore = []
ignore = [
"S101",
"ANN001","ANN002","ANN003","ANN201",
"FIX002",
"C901","ARG002",
"FA100",
"FBT001","FBT002",
"TD002","TD003","TD004",
"D100","D101","D102","D104","D107","D205","D415",
"E402","E501",
"F841",
"DTZ001","DTZ005","DTZ007","DTZ002",
"N801","N802","N803","N806",
"PLR2004","PLR0913","PLR0912",
"PLE1205",
"PTH110","PTH107","PTH123","PTH118","PTH112","PTH103",
"SIM102","SIM113","SIM115",
"G001","G003", "G004",
"B024",
"A001","A002",
"D417",
"TRY300",
"BLE001",
"PERF401"
]
fixable = [
"ALL",
]
Expand Down
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"""helper script to define version number for automation."""
import os

VERSION = "1.6.0"
Expand Down

0 comments on commit 628414a

Please sign in to comment.