mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update BLACKLISTs
This commit is contained in:
parent
dcb17e1800
commit
b794d92991
1 changed files with 2 additions and 3 deletions
|
@ -66,11 +66,10 @@ class Validator(object):
|
|||
|
||||
|
||||
class ModuleValidator(Validator):
|
||||
BLACKLIST_PATTERNS = ('.git*', '*.pyc', '*.pyo', '.*')
|
||||
BLACKLIST_PATTERNS = ('.git*', '*.pyc', '*.pyo', '.*', '*.md')
|
||||
BLACKLIST_FILES = frozenset(('.git', '.gitignore', '.travis.yml',
|
||||
'.gitattributes', '.gitmodules', 'COPYING',
|
||||
'CONTRIBUTING.md', 'README.md',
|
||||
'__init__.py'))
|
||||
'__init__.py', 'VERSION', 'test-docs.sh'))
|
||||
BLACKLIST = BLACKLIST_FILES.union(BLACKLIST_MODULES)
|
||||
|
||||
BOTTOM_IMPORTS = frozenset((
|
||||
|
|
Loading…
Reference in a new issue