This commit is contained in:
Ian Cordasco 2013-02-08 18:19:26 -05:00
parent 8a32526022
commit 42231ff1ec

View file

@ -123,7 +123,13 @@ def skip_warning(warning, ignore=[]):
def skip_line(line):
return line.strip().lower().endswith('# noqa')
def _noqa(line):
return line.strip().lower().endswith('# noqa')
skip = _noqa(line)
if not skip:
i = line.rfind(' #')
skip = _noqa(line[:i]) if i > 0 else False
return skip
_NOQA = re.compile(r'flake8[:=]\s*noqa', re.I | re.M)