1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Check for tabbed indentation

This commit is contained in:
Matt Martz 2015-06-30 13:51:01 -05:00 committed by John Barker
parent b794d92991
commit da3ce668fa

View file

@ -3,6 +3,7 @@
from __future__ import print_function
import os
import re
import abc
import ast
import sys
@ -15,6 +16,7 @@ from ansible.utils.module_docs import get_docstring, BLACKLIST_MODULES
BLACKLIST_DIRS = frozenset(('.git',))
INDENT_REGEX = re.compile(r'(^[ \t]*)', flags=re.M)
class Validator(object):
@ -144,6 +146,13 @@ class ModuleValidator(Validator):
'version 3' not in self.text):
self.errors.append('GPLv3 license header not found')
def _check_for_tabs(self):
indent = INDENT_REGEX.findall(self.text)
for i in indent:
if '\t' in i:
self.errors.append('indentation contains tabs')
break
def _find_json_import(self):
for child in self.ast.body:
if isinstance(child, ast.Import):
@ -294,6 +303,7 @@ class ModuleValidator(Validator):
main = self._find_main_call()
self._find_module_utils(main)
self._find_has_import()
self._check_for_tabs()
if self._powershell_module():
self._find_ps_replacers()