diff --git a/tools/formatter/Project.toml b/tools/formatter/Project.toml new file mode 100644 index 00000000..03ecb95d --- /dev/null +++ b/tools/formatter/Project.toml @@ -0,0 +1,5 @@ +[deps] +Runic = "62bfec6d-59d7-401d-8490-b29ee721c001" + +[compat] +Runic = "1.8" \ No newline at end of file diff --git a/tools/formatter/format.jl b/tools/formatter/format.jl new file mode 100644 index 00000000..2c78091a --- /dev/null +++ b/tools/formatter/format.jl @@ -0,0 +1,7 @@ +using Pkg +Pkg.activate(@__DIR__) +Pkg.instantiate() +using Runic + +dir = joinpath(@__DIR__, "..", "..") +Runic.main(["--verbose", "--inplace", dir]) \ No newline at end of file