mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update validate-modules to ignore *.rst files.
This commit is contained in:
parent
0587d59266
commit
a871e590a8
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ class Validator(with_metaclass(abc.ABCMeta, object)):
|
||||||
|
|
||||||
|
|
||||||
class ModuleValidator(Validator):
|
class ModuleValidator(Validator):
|
||||||
BLACKLIST_PATTERNS = ('.git*', '*.pyc', '*.pyo', '.*', '*.md', '*.txt')
|
BLACKLIST_PATTERNS = ('.git*', '*.pyc', '*.pyo', '.*', '*.md', '*.rst', '*.txt')
|
||||||
BLACKLIST_FILES = frozenset(('.git', '.gitignore', '.travis.yml',
|
BLACKLIST_FILES = frozenset(('.git', '.gitignore', '.travis.yml',
|
||||||
'shippable.yml',
|
'shippable.yml',
|
||||||
'.gitattributes', '.gitmodules', 'COPYING',
|
'.gitattributes', '.gitmodules', 'COPYING',
|
||||||
|
|
Loading…
Reference in a new issue