tree-sitter/script/lint.sh

8 lines
264 B
Bash
Raw Normal View History

2014-03-09 21:37:03 -07:00
#!/usr/bin/env bash
2014-03-09 22:05:17 -07:00
filters=-whitespace,-readability/namespace,-legal/copyright
cpplint=externals/cpplint.py
2014-03-09 22:24:52 -07:00
find src/compiler -type f | xargs $cpplint --root=src --filter=$filters 2>&1
2014-03-09 22:05:17 -07:00
find include -type f | xargs $cpplint --root=include --filter=$filters 2>&1