Mon, 24 Feb 2025 15:11:18 +0100
Modified the code style checker such, that the issue category and issue number are separated by a '-' to make up the issue code (e.g E-901).
# -*- coding: utf-8 -*- # Copyright (c) 2025 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing message translations for the code style plugin messages (pydantic part). """ from PyQt6.QtCore import QCoreApplication _pydanticMessages = { ## pydantic "PYD001": QCoreApplication.translate( "PydanticChecker", "positional argument for Field default argument", ), "PYD002": QCoreApplication.translate( "PydanticChecker", "non-annotated attribute inside Pydantic model", ), "PYD003": QCoreApplication.translate( "PydanticChecker", "unecessary Field call to specify a default value", ), "PYD004": QCoreApplication.translate( "PydanticChecker", "default argument specified in annotated", ), "PYD005": QCoreApplication.translate( "PydanticChecker", "field name overrides annotation", ), "PYD006": QCoreApplication.translate( "PydanticChecker", "duplicate field name", ), "PYD010": QCoreApplication.translate( "PydanticChecker", "usage of __pydantic_config__; consider using the `with_config` decorator", ), }