mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-23 20:52:04 +00:00
30 lines
560 B
TOML
30 lines
560 B
TOML
|
|
||
|
target-version = "py310"
|
||
|
fix = true
|
||
|
|
||
|
[lint]
|
||
|
extend-select = [
|
||
|
"B",
|
||
|
"C90",
|
||
|
"I", # isort
|
||
|
"UP", # pyupgrade
|
||
|
]
|
||
|
exclude = ["setup/*"]
|
||
|
|
||
|
[format]
|
||
|
exclude = ["setup/*"]
|
||
|
|
||
|
[per-file-ignores]
|
||
|
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
|
||
|
"__manifest__.py" = ["B018"] # useless expression
|
||
|
|
||
|
[isort]
|
||
|
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"]
|
||
|
|
||
|
[isort.sections]
|
||
|
"odoo" = ["odoo"]
|
||
|
"odoo-addons" = ["odoo.addons"]
|
||
|
|
||
|
[mccabe]
|
||
|
max-complexity = 16
|