22 lines
394 B
TOML
22 lines
394 B
TOML
[formatter."c++"]
|
|
command = "clang-format"
|
|
options = [
|
|
"-i",
|
|
"-style",
|
|
"{BasedOnStyle: llvm, IndentWidth: 4, SortIncludes: false}"
|
|
]
|
|
includes = ["*.c", "*.cpp", "*.cc", "*.h", "*.hpp"]
|
|
|
|
[formatter.nix]
|
|
command = "nixpkgs-fmt"
|
|
includes = ["*.nix"]
|
|
|
|
[formatter.toml]
|
|
command = "prettier"
|
|
options = ["--write"]
|
|
includes = ["*.toml"]
|
|
|
|
[formatter.python]
|
|
command = "black"
|
|
includes = ["*.py"]
|