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) 2023 - 2025 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing message translations for the code style plugin (unused part). """ from PyQt6.QtCore import QCoreApplication _unusedMessages = { ## Unused Arguments "U-100": QCoreApplication.translate("UnusedChecker", "Unused argument '{0}'"), "U-101": QCoreApplication.translate("UnusedChecker", "Unused argument '{0}'"), ## Unused Globals "U-200": QCoreApplication.translate("UnusedChecker", "Unused global variable '{0}'"), } _unusedMessagesSampleArgs = { ## Unused Arguments "U-100": ["foo_arg"], "U-101": ["_bar_arg"], ## Unused Globals "U-200": ["FOO"], }