Lines Matching +full:check +full:- +full:whitespace
27 'Non-member functions',
51 section_idx = -1 # the index of the current h2 section
66 # there should only be one top-level title
68 …report('structure/unexpected_section', f'{file}:{lineno+1}', f'unexpected top-level title "{line}"…
77 …report('whitespace/line_length', f'{file}:{lineno+1} ({current_section})', f'line is too long ({le…
79 # sections in `<!-- NOLINT -->` comments are treated as present
80 if line.startswith('<!-- NOLINT'):
81 current_section = line.strip('<!-- NOLINT')
82 current_section = current_section.strip(' -->')
85 # check if sections are correct
87 … # before starting a new section, check if the previous one documented all overloads
110 …# collect the numbered items of the current section to later check if they match the number of ove…
119 if line == '```cpp' and section_idx == -1:
123 # check numbering of overloads
138 …report('whitespace/blank_lines', f'{file}:{lineno}-{lineno+1} ({current_section})', 'consecutive b…
140 # check that non-example admonitions have titles
157 # check if every example file is used in at least one markdown file
173 print(120 * '-')
176 print(120 * '-')