diff --git a/test/chplcheck/activerules.good b/test/chplcheck/activerules.good index 79d0d88f179e..de544854b6af 100644 --- a/test/chplcheck/activerules.good +++ b/test/chplcheck/activerules.good @@ -4,6 +4,7 @@ Active rules: CamelCaseFunctions Warn for functions that are not 'camelCase'. CamelCaseRecords Warn for records that are not 'camelCase'. ChplPrefixReserved Warn for user-defined names that start with the 'chpl_' reserved prefix. + ComplexLiteralOrder Warn for complex literals that are not in a consistent order. DoKeywordAndBlock Warn for redundant 'do' keyword before a curly brace '{'. EmptyStmts Warn for empty statements (i.e., unnecessary semicolons). IncorrectIndentation Warn for inconsistent or missing indentation diff --git a/test/chplcheck/allrules.good b/test/chplcheck/allrules.good index 788e5dc96ed4..423925c920c4 100644 --- a/test/chplcheck/allrules.good +++ b/test/chplcheck/allrules.good @@ -5,6 +5,7 @@ Available rules (default rules marked with *): * CamelCaseRecords Warn for records that are not 'camelCase'. CamelOrPascalCaseVariables Warn for variables that are not 'camelCase' or 'PascalCase'. * ChplPrefixReserved Warn for user-defined names that start with the 'chpl_' reserved prefix. + * ComplexLiteralOrder Warn for complex literals that are not in a consistent order. ConsecutiveDecls Warn for consecutive variable declarations that can be combined. * DoKeywordAndBlock Warn for redundant 'do' keyword before a curly brace '{'. * EmptyStmts Warn for empty statements (i.e., unnecessary semicolons).