Initialize 17.0 branch

This commit is contained in:
oca-git-bot
2023-11-12 16:09:37 +01:00
commit b0e3a52dd1
14 changed files with 1572 additions and 0 deletions

29
.ruff.toml Normal file
View File

@@ -0,0 +1,29 @@
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