Skip to content

Commit 20a2ef5

Browse files
author
jalcaras
committed
remove FBT rule
1 parent e59d944 commit 20a2ef5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

ruff.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ select = [
77
"N", # pep8-naming (N)
88
"UP", # pyupgrade (UP)
99
"YTT", # flake8-2020 (YTT)
10-
# "ANN", # flake8-annotations (ANN)
1110
"ASYNC", # flake8-async (ASYNC)
1211
"S", # flake8-bandit (S)
1312
"BLE", # flake8-blind-except (BLE)
14-
"FBT", # flake8-boolean-trap (FBT)
1513
"B", # flake8-bugbear (B)
1614
"A", # flake8-builtins (A)
1715
"COM", # flake8-commas (COM)
@@ -39,7 +37,6 @@ select = [
3937
"TID", # flake8-tidy-imports (TID)
4038
"TCH", # flake8-type-checking (TCH)
4139
"INT", # flake8-gettext (INT)
42-
# "ARG", # flake8-unused-arguments (ARG)
4340
"ERA", # eradicate (ERA)
4441
"PD", # pandas-vet (PD)
4542
"PGH", # pygrep-hooks (PGH)
@@ -53,6 +50,8 @@ select = [
5350
]
5451

5552
# Ignored rules
53+
# "ANN", # flake8-annotations (ANN)
54+
# "ARG", # flake8-unused-arguments (ARG)
5655
# "D", # pydocstyle (D)
5756
# "PTH", # flake8-use-pathlib (PTH)
5857
# "BLE", # flake8-blind-except (BLE)
@@ -63,5 +62,4 @@ select = [
6362

6463

6564
# Ignore error code
66-
# ANN101 -> Missing type annotation for `self` in method
67-
ignore = ["ANN101"]
65+
ignore = []

0 commit comments

Comments
 (0)