Update repository to get version 19.0 from oca-addons-repo-template

This commit is contained in:
cyrilmanuel
2025-10-02 14:17:43 +02:00
parent 5d921db4bc
commit 462bfe8c27
15 changed files with 349 additions and 310 deletions
+5 -4
View File
@@ -10,21 +10,22 @@ extend-select = [
"I", # isort
"UP", # pyupgrade
]
extend-safe-fixes = ["UP008"]
exclude = ["setup/*"]
[format]
exclude = ["setup/*"]
[per-file-ignores]
[lint.per-file-ignores]
"__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py
"__manifest__.py" = ["B018"] # useless expression
[isort]
[lint.isort]
section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"]
[isort.sections]
[lint.isort.sections]
"odoo" = ["odoo"]
"odoo-addons" = ["odoo.addons"]
[mccabe]
[lint.mccabe]
max-complexity = 16