Revision db4eb13c5d377bd2067613a9adca886c818aa1dc authored by Corey Farwell on 26 April 2016, 09:31:10 UTC, committed by Ms2ger on 26 April 2016, 09:31:10 UTC
https://github.com/whatwg/dom/commit/9e3ce67c7927d6642646a3d0c84fa6d8f7926cfa
1 parent d5a4c5b
Raw File
lint
#!/usr/bin/env python
import sys

try:
    from tools.lint import lint
except ImportError:
    print("tools.lint not found.  Did you forget to run "
          '"git submodule update --init --recursive"?')
    sys.exit(2)

sys.exit(0 if lint.main() == 0 else 1)
back to top