--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Simplify/translations.py Sun Feb 23 12:42:47 2025 +0100 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Simplify/translations.py Mon Feb 24 15:11:18 2025 +0100 @@ -13,172 +13,172 @@ _simplifyMessages = { # Python-specifics - "Y101": QCoreApplication.translate( + "Y-101": QCoreApplication.translate( "SimplifyChecker", """Multiple "isinstance()" calls which can be merged into a single """ '''call for variable "{0}"''', ), - "Y102": QCoreApplication.translate( + "Y-102": QCoreApplication.translate( "SimplifyChecker", """Use a single if-statement instead of nested if-statements""", ), - "Y103": QCoreApplication.translate( + "Y-103": QCoreApplication.translate( "SimplifyChecker", """Return the condition "{0}" directly""" ), - "Y104": QCoreApplication.translate("SimplifyChecker", '''Use "yield from {0}"'''), - "Y105": QCoreApplication.translate( + "Y-104": QCoreApplication.translate("SimplifyChecker", '''Use "yield from {0}"'''), + "Y-105": QCoreApplication.translate( "SimplifyChecker", '''Use "with contextlib.suppress({0}):"''' ), - "Y106": QCoreApplication.translate( + "Y-106": QCoreApplication.translate( "SimplifyChecker", """Handle error-cases first""" ), - "Y107": QCoreApplication.translate( + "Y-107": QCoreApplication.translate( "SimplifyChecker", """Don't use return in try/except and finally""" ), - "Y108": QCoreApplication.translate( + "Y-108": QCoreApplication.translate( "SimplifyChecker", """Use ternary operator "{0} = {1} if {2} else {3}" """ """instead of if-else-block""", ), - "Y109": QCoreApplication.translate( + "Y-109": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} in {1}" instead of "{2}"''' ), - "Y110": QCoreApplication.translate( + "Y-110": QCoreApplication.translate( "SimplifyChecker", '''Use "any({0} for {1} in {2})"''' ), - "Y111": QCoreApplication.translate( + "Y-111": QCoreApplication.translate( "SimplifyChecker", '''Use "all({0} for {1} in {2})"''' ), - "Y112": QCoreApplication.translate( + "Y-112": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y113": QCoreApplication.translate( + "Y-113": QCoreApplication.translate( "SimplifyChecker", '''Use enumerate instead of "{0}"''' ), - "Y114": QCoreApplication.translate( + "Y-114": QCoreApplication.translate( "SimplifyChecker", """Use logical or ("({0}) or ({1})") and a single body""" ), - "Y115": QCoreApplication.translate( + "Y-115": QCoreApplication.translate( "SimplifyChecker", """Use context handler for opening files""" ), - "Y116": QCoreApplication.translate( + "Y-116": QCoreApplication.translate( "SimplifyChecker", """Use a dictionary lookup instead of 3+ if/elif-statements: """ """return {0}""", ), - "Y117": QCoreApplication.translate( + "Y-117": QCoreApplication.translate( "SimplifyChecker", """Use "{0}" instead of multiple with statements""" ), - "Y118": QCoreApplication.translate( + "Y-118": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} in {1}" instead of "{0} in {1}.keys()"''' ), - "Y119": QCoreApplication.translate( + "Y-119": QCoreApplication.translate( "SimplifyChecker", '''Use a dataclass for "class {0}"''' ), - "Y120": QCoreApplication.translate( + "Y-120": QCoreApplication.translate( "SimplifyChecker", '''Use "class {0}:" instead of "class {0}(object):"''' ), - "Y121": QCoreApplication.translate( + "Y-121": QCoreApplication.translate( "SimplifyChecker", '''Use "class {0}({1}):" instead of "class {0}({1}, object):"''', ), - "Y122": QCoreApplication.translate( + "Y-122": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}.get({1})" instead of "if {1} in {0}: {0}[{1}]"''' ), - "Y123": QCoreApplication.translate( + "Y-123": QCoreApplication.translate( "SimplifyChecker", """Use "{0} = {1}.get({2}, {3})" instead of an if-block""" ), # Python-specifics not part of flake8-simplify - "Y181": QCoreApplication.translate( + "Y-181": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y182": QCoreApplication.translate( + "Y-182": QCoreApplication.translate( "SimplifyChecker", '''Use "super()" instead of "{0}"''' ), # Comparations - "Y201": QCoreApplication.translate( + "Y-201": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} != {1}" instead of "not {0} == {1}"''' ), - "Y202": QCoreApplication.translate( + "Y-202": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} == {1}" instead of "not {0} != {1}"''' ), - "Y203": QCoreApplication.translate( + "Y-203": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} not in {1}" instead of "not {0} in {1}"''' ), - "Y204": QCoreApplication.translate( + "Y-204": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} >= {1}" instead of "not ({0} < {1})"''' ), - "Y205": QCoreApplication.translate( + "Y-205": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} > {1}" instead of "not ({0} <= {1})"''' ), - "Y206": QCoreApplication.translate( + "Y-206": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} <= {1}" instead of "not ({0} > {1})"''' ), - "Y207": QCoreApplication.translate( + "Y-207": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} < {1}" instead of "not ({0} >= {1})"''' ), - "Y208": QCoreApplication.translate( + "Y-208": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "not (not {0})"''' ), - "Y211": QCoreApplication.translate( + "Y-211": QCoreApplication.translate( "SimplifyChecker", '''Use "{1}" instead of "True if {0} else False"''' ), - "Y212": QCoreApplication.translate( + "Y-212": QCoreApplication.translate( "SimplifyChecker", '''Use "{1}" instead of "False if {0} else True"''' ), - "Y213": QCoreApplication.translate( + "Y-213": QCoreApplication.translate( "SimplifyChecker", '''Use "{0} if {0} else {1}" instead of "{1} if not {0} else {0}"''', ), - "Y221": QCoreApplication.translate( + "Y-221": QCoreApplication.translate( "SimplifyChecker", '''Use "False" instead of "{0} and not {0}"''' ), - "Y222": QCoreApplication.translate( + "Y-222": QCoreApplication.translate( "SimplifyChecker", '''Use "True" instead of "{0} or not {0}"''' ), - "Y223": QCoreApplication.translate( + "Y-223": QCoreApplication.translate( "SimplifyChecker", '''Use "True" instead of "... or True"''' ), - "Y224": QCoreApplication.translate( + "Y-224": QCoreApplication.translate( "SimplifyChecker", '''Use "False" instead of "... and False"''' ), # Opinionated - "Y301": QCoreApplication.translate( + "Y-301": QCoreApplication.translate( "SimplifyChecker", """Use "{1} == {0}" instead of "{0} == {1}" (Yoda-condition)""", ), # General Code Style - "Y401": QCoreApplication.translate( + "Y-401": QCoreApplication.translate( "SimplifyChecker", """Use keyword-argument instead of magic boolean""" ), - "Y402": QCoreApplication.translate( + "Y-402": QCoreApplication.translate( "SimplifyChecker", """Use keyword-argument instead of magic number""" ), # f-Strings - "Y411": QCoreApplication.translate("SimplifyChecker", "Do not nest f-strings"), + "Y-411": QCoreApplication.translate("SimplifyChecker", "Do not nest f-strings"), # Additional Checks - "Y901": QCoreApplication.translate( + "Y-901": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y904": QCoreApplication.translate( + "Y-904": QCoreApplication.translate( "SimplifyChecker", """Initialize dictionary "{0}" directly""" ), - "Y905": QCoreApplication.translate( + "Y-905": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y906": QCoreApplication.translate( + "Y-906": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y907": QCoreApplication.translate( + "Y-907": QCoreApplication.translate( "SimplifyChecker", '''Use "Optional[{0}]" instead of "{1}"''' ), - "Y909": QCoreApplication.translate( + "Y-909": QCoreApplication.translate( "SimplifyChecker", '''Remove reflexive assignment "{0}"''' ), - "Y910": QCoreApplication.translate( + "Y-910": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}" instead of "{1}"''' ), - "Y911": QCoreApplication.translate( + "Y-911": QCoreApplication.translate( "SimplifyChecker", '''Use "{0}.items()" instead of "zip({0}.keys(), {0}.values())"''', ), @@ -186,55 +186,55 @@ _simplifyMessagesSampleArgs = { # Python-specifics - "Y101": ["foo"], - "Y103": ["foo != bar"], - "Y104": ["iterable"], - "Y105": ["Exception"], - "Y108": ["foo", "bar", "condition", "baz"], - "Y109": ["foo", "[1, 42]", "foo == 1 or foo == 42"], - "Y110": ["check", "foo", "iterable"], - "Y111": ["check", "foo", "iterable"], - "Y112": ["FOO", "foo"], - "Y113": ["foo"], - "Y114": ["foo > 42", "bar < 42"], - "Y116": ["bar_dict.get(foo, 42)"], - "Y117": ["with Foo() as foo, Bar() as bar:"], - "Y118": ["foo", "bar_dict"], - "Y119": ["Foo"], - "Y120": ["Foo"], - "Y121": ["FooBar", "Foo"], - "Y122": ["bar_dict", "'foo'"], - "Y123": ["foo", "fooDict", "bar", "default"], - "Y124": ["foo", "bar"], + "Y-101": ["foo"], + "Y-103": ["foo != bar"], + "Y-104": ["iterable"], + "Y-105": ["Exception"], + "Y-108": ["foo", "bar", "condition", "baz"], + "Y-109": ["foo", "[1, 42]", "foo == 1 or foo == 42"], + "Y-110": ["check", "foo", "iterable"], + "Y-111": ["check", "foo", "iterable"], + "Y-112": ["FOO", "foo"], + "Y-113": ["foo"], + "Y-114": ["foo > 42", "bar < 42"], + "Y-116": ["bar_dict.get(foo, 42)"], + "Y-117": ["with Foo() as foo, Bar() as bar:"], + "Y-118": ["foo", "bar_dict"], + "Y-119": ["Foo"], + "Y-120": ["Foo"], + "Y-121": ["FooBar", "Foo"], + "Y-122": ["bar_dict", "'foo'"], + "Y-123": ["foo", "fooDict", "bar", "default"], + "Y-124": ["foo", "bar"], # Python-specifics not part of flake8-simplify - "Y181": ["foo += 42", "foo = foo + 42"], - "Y182": ["super()"], + "Y-181": ["foo += 42", "foo = foo + 42"], + "Y-182": ["super()"], # Comparations - "Y201": ["foo", "bar"], - "Y202": ["foo", "bar"], - "Y203": ["foo", "bar"], - "Y204": ["foo", "bar"], - "Y205": ["foo", "bar"], - "Y206": ["foo", "bar"], - "Y207": ["foo", "bar"], - "Y208": ["foo"], - "Y211": ["foo", "bool(foo)"], - "Y212": ["foo", "not foo"], - "Y213": ["foo", "bar"], - "Y221": ["foo"], - "Y222": ["foo"], + "Y-201": ["foo", "bar"], + "Y-202": ["foo", "bar"], + "Y-203": ["foo", "bar"], + "Y-204": ["foo", "bar"], + "Y-205": ["foo", "bar"], + "Y-206": ["foo", "bar"], + "Y-207": ["foo", "bar"], + "Y-208": ["foo"], + "Y-211": ["foo", "bool(foo)"], + "Y-212": ["foo", "not foo"], + "Y-213": ["foo", "bar"], + "Y-221": ["foo"], + "Y-222": ["foo"], # Opinionated - "Y301": ["42", "foo"], + "Y-301": ["42", "foo"], # General Code Style # Additional checks - "Y901": ["foo == bar", "bool(foo == bar)"], - "Y904": ["foo"], - "Y905": [ + "Y-901": ["foo == bar", "bool(foo == bar)"], + "Y-904": ["foo"], + "Y-905": [ """["de", "com", "net", "org"]""", """domains = "de com net org".split()""", ], - "Y906": ["os.path.join(a, b, c)", "os.path.join(a,os.path.join(b,c))"], - "Y907": ["int", "Union[int, None]"], - "Y909": ["foo = foo"], - "Y911": ["foo"], + "Y-906": ["os.path.join(a, b, c)", "os.path.join(a,os.path.join(b,c))"], + "Y-907": ["int", "Union[int, None]"], + "Y-909": ["foo = foo"], + "Y-911": ["foo"], }