mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-13 17:55:52 +00:00
15 lines
219 B
Bash
Executable File
15 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
isort src
|
|
black src
|
|
|
|
clang-format -style='{
|
|
"BasedOnStyle": "google",
|
|
"BinPackParameters": false,
|
|
"BinPackArguments": false,
|
|
"AlignAfterOpenBracket": "AlwaysBreak"
|
|
}' -i src/*.cpp
|
|
|