mirror of
https://github.com/denoland/deno.git
synced 2024-11-30 16:40:57 -05:00
7 lines
140 B
Bash
Executable file
7 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd `dirname "$0"`/..
|
|
cpplint --filter=-build/include_subdir --repository=src \
|
|
src/*.cc \
|
|
src/*.h \
|
|
src/include/*.h
|