tree-sitter/script/lint.sh
2014-03-09 23:58:25 -07:00

9 lines
192 B
Bash
Executable file

#!/usr/bin/env bash
cpplint=externals/cpplint.py
find src/compiler -type f | xargs $cpplint \
--root=src \
--linelength=110 \
--filter=-readability/namespace,-legal/copyright \
2>&1