Skip to content

Commit 9e9b47e

Browse files
authored
chore: add a few more passing ruff checks (#1030)
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 5cfea65 commit 9e9b47e

1 file changed

Lines changed: 15 additions & 9 deletions

File tree

pyproject.toml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,28 +97,34 @@ lint.extend-select = [
9797
"C4", # flake8-comprehensions
9898
"EM", # flake8-errmsg
9999
"EXE", # flake8-executable
100+
"FA", # flake8-future-annotations
100101
"FBT", # flake8-boolean-trap
101102
"FLY", # flynt
102103
"FURB", # refurb
104+
"G", # flake8-logging-format
103105
"I", # isort
104106
"ICN", # flake8-import-conventions
105107
"ISC", # flake8-implicit-str-concat
108+
"LOG", # flake8-logging
106109
"N", # flake8-naming
107110
"PERF", # perflint
108111
"PGH", # pygrep-hooks
109112
"PIE", # flake8-pie
110113
"PL", # pylint
111114
"PT", # flake8-pytest-style
112115
# "PTH", # flake8-use-pathlib
113-
"PYI", # flake8-pyi
114-
"RET", # flake8-return
115-
"RUF", # Ruff-specific
116-
"S", # eval -> literal_eval
117-
"SIM", # flake8-simplify
118-
"TC", # flake8-type-checking
119-
"TRY", # tryceratops
120-
"UP", # pyupgrade
121-
"YTT", # flake8-2020
116+
"PYI", # flake8-pyi
117+
"Q", # flake8-quotes
118+
"RET", # flake8-return
119+
"RUF", # Ruff-specific
120+
"S", # eval -> literal_eval
121+
"SIM", # flake8-simplify
122+
"SLOT", # flake8-slots
123+
"T10", # flake8-debugger
124+
"TC", # flake8-type-checking
125+
"TRY", # tryceratops
126+
"UP", # pyupgrade
127+
"YTT", # flake8-2020
122128
]
123129
lint.ignore = [
124130
"N802", # Function name should be lowercase

0 commit comments

Comments
 (0)