1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
target-version = "py39"
fix = true
[lint]
extend-select = [
"B",
"C90",
"E501", # line too long (default 88)
"I", # isort
"UP", # pyupgrade
]
exclude = ["setup/*", "src/*", "scrypt-1.2.1/*", "util/*", "scrypt-windows-stubs/*" ]
[format]
exclude = ["setup/*", "src/*", "scrypt-1.2.1/*", "util/*", "scrypt-windows-stubs/*" ]
[lint.per-file-ignores]
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
"__manifest__.py" = ["B018"] # useless expression
[lint.isort]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
[lint.mccabe]
max-complexity = 16
|