src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/NameOrder/translations.py

Mon, 24 Feb 2025 15:11:18 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 24 Feb 2025 15:11:18 +0100
branch
eric7
changeset 11147
dee6e106b4d3
parent 11090
f5f5f5803935
child 11150
73d80859079c
permissions
-rw-r--r--

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) 2021 - 2025 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing message translations for the code style plugin
(name ordering part).
"""

from PyQt6.QtCore import QCoreApplication

_nameOrderMessages = {
    "NO101": QCoreApplication.translate(
        "NameOrderChecker",
        "Import statements are in the wrong order. '{0}' should be before '{1}'",
    ),
    "NO102": QCoreApplication.translate(
        "NameOrderChecker", "Imported names are in the wrong order. Should be '{0}'"
    ),
    "NO103": QCoreApplication.translate(
        "NameOrderChecker",
        "Import statements should be combined. '{0}' should be combined with '{1}'",
    ),
    "NO104": QCoreApplication.translate(
        "NameOrderChecker",
        "The names in __all__ are in the wrong order. The order should be '{0}'",
    ),
    "NO105": QCoreApplication.translate(
        "NameOrderChecker",
        "The names in the exception handler list are in the wrong order. The order"
        " should be '{0}'",
    ),
}

_nameOrderMessagesSampleArgs = {
    "NO101": ["import bar", "import foo"],
    "NO102": ["bar, baz, foo"],
    "NO103": ["from foo import bar", "from foo import baz"],
    "NO104": ["bar, baz, foo"],
    "NO105": ["BarError, BazError, FooError"],
}

eric ide

mercurial