Do not fix ruff EXE001 rule (#11350)

* Do not fix ruff EXE001 rule

* Fix
This commit is contained in:
Maxim Smolskiy 2024-04-08 14:22:54 +03:00 committed by GitHub
parent 53b2926704
commit cc2f5b1308
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@ lint.ignore = [ # `ruff rule S101` for a description of that rule
"B905", # `zip()` without an explicit `strict=` parameter -- FIX ME
"E741", # Ambiguous variable name 'l' -- FIX ME
"EM101", # Exception must not use a string literal, assign to variable first
"EXE001", # Shebang is present but file is not executable" -- FIX ME
"EXE001", # Shebang is present but file is not executable -- DO NOT FIX
"G004", # Logging statement uses f-string
"PLC1901", # `{}` can be simplified to `{}` as an empty string is falsey
"PLW060", # Using global for `{name}` but no assignment is done -- DO NOT FIX