mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-12 09:17:06 +00:00
10 lines
102 B
Bash
Executable File
10 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
isort src
|
|
black src
|
|
|
|
clang-format -i $(find src -name '*.cpp' -or -name '*.h')
|
|
|