Created
January 5, 2017 01:03
-
-
Save grantmcconnaughey/f66fb46346cf02438c25c77ca6172849 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __init__(self): | |
self.linter = self.get_linter() | |
def lint_entire_project(self): | |
"""Lints the local repo and returns the violations found.""" | |
self.state = BUILD_RUNNING | |
self.save() | |
violations = self.linter.lint() | |
return violations |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment