--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Naming/translations.py Sun Jul 24 16:41:08 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/Naming/translations.py Wed Jul 27 15:01:13 2022 +0200 @@ -37,6 +37,9 @@ "N808": QCoreApplication.translate( "NamingStyleChecker", "package names should be lowercase" ), + "N809": QCoreApplication.translate( + "NamingStyleChecker", "function name should not start and end with '__'" + ), "N811": QCoreApplication.translate( "NamingStyleChecker", "constant imported as non constant" ), @@ -49,9 +52,21 @@ "N814": QCoreApplication.translate( "NamingStyleChecker", "camelcase imported as constant" ), + "N815": QCoreApplication.translate( + "NamingStyleChecker", "camelcase imported as acronym" + ), + "N818": QCoreApplication.translate( + "NamingStyleChecker", "exception name should be named with an 'Error' suffix" + ), "N821": QCoreApplication.translate( "NamingStyleChecker", "variable in function should be lowercase" ), + "N822": QCoreApplication.translate( + "NamingStyleChecker", "variable in class scope should not be mixed case" + ), + "N823": QCoreApplication.translate( + "NamingStyleChecker", "variable in global scope should not be mixed case" + ), "N831": QCoreApplication.translate( "NamingStyleChecker", "names 'l', 'O' and 'I' should be avoided" ),