mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
tools: skip _test.v and _test.c.v files in find_doc_comments_with_no_dots.v
This commit is contained in:
parent
30ce22866d
commit
a011888612
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ fn main() {
|
|||
fpaths << filepath
|
||||
}
|
||||
if os.is_dir(filepath) {
|
||||
fpaths << os.walk_ext(filepath, '.v')
|
||||
fpaths << os.walk_ext(filepath, '.v').filter(!it.ends_with('_test.v')
|
||||
&& !it.ends_with('_test.c.v'))
|
||||
}
|
||||
}
|
||||
mut ctx := Context{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue