General - Format config classes with consistent spacing (#8550)

This commit is contained in:
Björn Dahlgren 2021-10-18 18:56:43 +02:00 committed by GitHub
parent 9f4dd776b8
commit b12af1e0b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
23 changed files with 91 additions and 81 deletions

View File

@ -17,7 +17,11 @@ def check_config_style(filepath):
closing << closingStack.pop() closing << closingStack.pop()
reIsClass = re.compile(r'^\s*class(.*)') reIsClass = re.compile(r'^\s*class(.*)')
reIsClassInherit = re.compile(r'^\s*class(.*):')
reIsClassBody = re.compile(r'^\s*class(.*){')
reBadColon = re.compile(r'\s*class (.*) :') reBadColon = re.compile(r'\s*class (.*) :')
reSpaceAfterColon = re.compile(r'\s*class (.*): ')
reSpaceBeforeCurly = re.compile(r'\s*class (.*) {')
reClassSingleLine = re.compile(r'\s*class (.*)[{;]') reClassSingleLine = re.compile(r'\s*class (.*)[{;]')
with open(filepath, 'r', encoding='utf-8', errors='ignore') as file: with open(filepath, 'r', encoding='utf-8', errors='ignore') as file:
@ -127,8 +131,14 @@ def check_config_style(filepath):
for lineNumber, line in enumerate(file.readlines()): for lineNumber, line in enumerate(file.readlines()):
if reIsClass.match(line): if reIsClass.match(line):
if reBadColon.match(line): if reBadColon.match(line):
print(f"WARNING: bad class colon {filepath} Line number: {lineNumber}") print(f"WARNING: bad class colon {filepath} Line number: {lineNumber+1}")
# bad_count_file += 1 # bad_count_file += 1
if reIsClassInherit.match(line):
if not reSpaceAfterColon.match(line):
print(f"WARNING: bad class missing space after colon {filepath} Line number: {lineNumber+1}")
if reIsClassBody.match(line):
if not reSpaceBeforeCurly.match(line):
print(f"WARNING: bad class inherit missing space before curly braces {filepath} Line number: {lineNumber+1}")
if not reClassSingleLine.match(line): if not reClassSingleLine.match(line):
print(f"WARNING: bad class braces placement {filepath} Line number: {lineNumber+1}") print(f"WARNING: bad class braces placement {filepath} Line number: {lineNumber+1}")
# bad_count_file += 1 # bad_count_file += 1