tree-sitter/script/lint.sh

9 lines
216 B
Bash
Raw Normal View History

2014-03-09 21:37:03 -07:00
#!/usr/bin/env bash
2014-04-28 21:46:43 -07:00
externals/cpplint.py \
2014-03-09 23:51:33 -07:00
--root=src \
--linelength=110 \
2014-04-28 21:46:43 -07:00
--filter=-legal/copyright,-readability/namespace,-whitespace/indent,-whitespace/line_length \
$(find src/compiler -type f) \
2014-03-09 23:51:33 -07:00
2>&1