File tree Expand file tree Collapse file tree 4 files changed +678
-748
lines changed Expand file tree Collapse file tree 4 files changed +678
-748
lines changed Original file line number Diff line number Diff line change @@ -149,16 +149,16 @@ indent-style = "space"
149
149
150
150
[tool .ruff .lint ]
151
151
ignore = [
152
- " PLR0913" ,
153
- " TC001" ,
154
- " COM812" ,
155
- " ISC001" ,
156
- " TC002" ,
152
+ " COM812" , # ignore trailing comma errors due to older Python versions
153
+ " PD011" , # ignore .values usage since ruff assumes it's a Pandas DataFrame
154
+ " PLR0913" , # ignore too many arguments in function definitions
157
155
" PLW1514" , # allow Path.open without encoding
158
156
" RET505" , # allow `else` blocks
159
157
" RET506" , # allow `else` blocks
160
- " PD011" , # ignore .values usage since ruff assumes it's a Pandas DataFrame
161
- " TC003" , # ignore imports for only type checking errors
158
+ " S311" , # allow standard pseudo-random generators
159
+ " TC001" , # ignore imports used only for type checking
160
+ " TC002" , # ignore imports used only for type checking
161
+ " TC003" , # ignore imports used only for type checking
162
162
]
163
163
select = [
164
164
# Rules reference: https://docs.astral.sh/ruff/rules/
You can’t perform that action at this time.
0 commit comments