cron better exception management. show supplier commercial name in product card template. linters config

This commit is contained in:
GitHub Copilot 2026-06-02 10:43:54 +02:00
parent a812b4385d
commit 87dcb4e350
17 changed files with 104 additions and 100 deletions

View file

@ -17,24 +17,4 @@ extend-exclude = '''
)/
'''
[tool.isort]
profile = "black"
force_single_line = true
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
skip_glob = ["*/__init__.py"]
known_odoo = ["odoo"]
known_odoo_addons = ["odoo.addons"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "ODOO", "ODOO_ADDONS", "FIRSTPARTY", "LOCALFOLDER"]
default_section = "THIRDPARTY"
[tool.mypy]
# Excluir carpetas de migraciones y archivos de post-migrate.py que usan guiones
# (evita errores de "Duplicate module" en mypy cuando múltiples addons contienen
# archivos con el mismo nombre como `post-migrate.py`). Usamos una expresión
# regular que coincide con cualquier ruta que contenga `/migrations/`.
exclude = "(?i).*/migrations/.*"
# isort config lives in .isort.cfg (single source of truth).