Skip to content
Snippets Groups Projects
Commit feb4e3fb authored by ='s avatar =
Browse files

changed a linter rule

parent dfb1a7bc
No related branches found
No related tags found
No related merge requests found
...@@ -64,7 +64,7 @@ class Linter: ...@@ -64,7 +64,7 @@ class Linter:
elif tmp_line.startswith('section'): elif tmp_line.startswith('section'):
inside_text_section = False inside_text_section = False
if inside_text_section is True and not tmp_line.startswith('global'): if inside_text_section is True and not tmp_line.startswith('global') and not tmp_line.startswith('extern'):
if target_indentation == -1: if target_indentation == -1:
target_indentation = len(line) - len(line.lstrip()) target_indentation = len(line) - len(line.lstrip())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment