* Lint and format with ruff, check types with mypy * Fix mypy checks * Update CI * Remove shebangs * Ignore EXE rules * Fix EOL * Fix mypy for 3.7 * Fix CI * Fix CI * Ensure filelock path exists * ci: various ci fixes (#500) --------- Co-authored-by: Arsenii es3n1n <me@es3n.in>
13 lines
231 B
TOML
13 lines
231 B
TOML
target-version = "py37"
|
|
line-length = 100
|
|
|
|
[lint]
|
|
select = ["ALL"]
|
|
ignore = [
|
|
"C90", "D",
|
|
"S", "BLE", "FBT", "A", "EM", "FA", "G", "SLF", "PTH",
|
|
"PLR", "TRY",
|
|
"PLW2901", "ANN204",
|
|
"COM812", "ISC001",
|
|
"EXE"
|
|
] |