├── .cargo └── config.toml ├── .github ├── CONTRIBUTING.md └── workflows │ ├── ci.generate.ts │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── deployment └── schema.json ├── dprint.json ├── rust-toolchain.toml ├── scripts ├── create_plugin_file.ts └── generate_release_notes.ts ├── src ├── configuration.rs ├── handler.rs ├── lib.rs └── main.rs └── tests ├── fold.ts ├── resources ├── alice29.txt ├── multi-line.txt └── one-line.txt ├── specs ├── FormatFile │ ├── LongFile.txt │ ├── LongFileStdin.txt │ ├── MultiLineFile.txt │ └── OneLineFile.txt └── General │ ├── Associations_Match.txt │ ├── Associations_NoMatch.txt │ ├── Rustfmt.txt │ └── Stdout_All.txt └── tests.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/ci.generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/.github/workflows/ci.generate.ts -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | .vscode 3 | *.iml 4 | /.idea 5 | /target 6 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 100 2 | tab_spaces = 2 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/README.md -------------------------------------------------------------------------------- /deployment/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/deployment/schema.json -------------------------------------------------------------------------------- /dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/dprint.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /scripts/create_plugin_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/scripts/create_plugin_file.ts -------------------------------------------------------------------------------- /scripts/generate_release_notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/scripts/generate_release_notes.ts -------------------------------------------------------------------------------- /src/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/src/configuration.rs -------------------------------------------------------------------------------- /src/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/src/handler.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/src/main.rs -------------------------------------------------------------------------------- /tests/fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/fold.ts -------------------------------------------------------------------------------- /tests/resources/alice29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/resources/alice29.txt -------------------------------------------------------------------------------- /tests/resources/multi-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/resources/multi-line.txt -------------------------------------------------------------------------------- /tests/resources/one-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/resources/one-line.txt -------------------------------------------------------------------------------- /tests/specs/FormatFile/LongFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/FormatFile/LongFile.txt -------------------------------------------------------------------------------- /tests/specs/FormatFile/LongFileStdin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/FormatFile/LongFileStdin.txt -------------------------------------------------------------------------------- /tests/specs/FormatFile/MultiLineFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/FormatFile/MultiLineFile.txt -------------------------------------------------------------------------------- /tests/specs/FormatFile/OneLineFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/FormatFile/OneLineFile.txt -------------------------------------------------------------------------------- /tests/specs/General/Associations_Match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/General/Associations_Match.txt -------------------------------------------------------------------------------- /tests/specs/General/Associations_NoMatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/General/Associations_NoMatch.txt -------------------------------------------------------------------------------- /tests/specs/General/Rustfmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/General/Rustfmt.txt -------------------------------------------------------------------------------- /tests/specs/General/Stdout_All.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/specs/General/Stdout_All.txt -------------------------------------------------------------------------------- /tests/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dprint/dprint-plugin-exec/HEAD/tests/tests.rs --------------------------------------------------------------------------------