There was an error while loading. Please reload this page.
2 parents 60c4c59 + 35deda5 commit 7dc57edCopy full SHA for 7dc57ed
2 files changed
gitlab_codeowners_linter/checks.py
@@ -8,9 +8,6 @@
8
from gitlab_codeowners_linter.sorting import sort_paths
9
from gitlab_codeowners_linter.sorting import sort_section_names
10
11
-# TODO: if there are duplicated sections, do I want to issue the error message for
12
-# that section only once?
13
-
14
15
class CodeownersViolations:
16
def __init__(self):
gitlab_codeowners_linter/parser.py
@@ -69,7 +69,6 @@ def parse_codeowners(file_path):
69
comments_block = []
70
continue
71
if section_regex.search(line):
72
- # TODO: handle sections with duplicate names
73
# TODO: manage gitlab optional sections, the ones starting with ^
74
# TODO: at the moment for any section with a following comment like
75
# [Section]#this is a comment
0 commit comments