├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE └── src ├── format.rs ├── format └── callrustfmt.rs ├── git.rs └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/src/format.rs -------------------------------------------------------------------------------- /src/format/callrustfmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/src/format/callrustfmt.rs -------------------------------------------------------------------------------- /src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/src/git.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athei/gitfmt/HEAD/src/main.rs --------------------------------------------------------------------------------