Check for missing GPLv3 license header in module. Fixes #4
This commit is contained in:
parent
4c8c0b035f
commit
8ff644680d
1 changed files with 6 additions and 0 deletions
|
@ -115,6 +115,11 @@ class ModuleValidator(Validator):
|
|||
if 'sys.exit(' in self.text:
|
||||
self.errors.append('sys.exit() call found')
|
||||
|
||||
def _check_for_gpl3_header(self):
|
||||
if ('GNU General Public License' not in self.text and
|
||||
'version 3' not in self.text):
|
||||
self.errors.append('GPLv3 license header not found')
|
||||
|
||||
def _find_json_import(self):
|
||||
for child in self.ast.body:
|
||||
if isinstance(child, ast.Import):
|
||||
|
@ -235,6 +240,7 @@ class ModuleValidator(Validator):
|
|||
if not self._just_docs():
|
||||
self._check_interpreter()
|
||||
self._check_for_sys_exit()
|
||||
self._check_for_gpl3_header()
|
||||
self._find_json_import()
|
||||
module_utils = self._find_module_utils()
|
||||
main = self._find_main_call()
|
||||
|
|
Loading…
Reference in a new issue