6 lines
117 B
Bash
6 lines
117 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
FILES="`find src -type f -name '*.ts'`"
|
||
|
|
||
|
./node_modules/.bin/clang-format -i -style=file $FILES
|