
- Remove Rust formatting check from CI workflow since formatting is now applied - Standardize import ordering and organization throughout codebase - Fix indentation, spacing, and line breaks for consistency - Clean up trailing whitespace and formatting inconsistencies - Apply rustfmt to all Rust source files including checkpoint, sandbox, commands, and test modules This establishes a consistent code style baseline for the project.
6 lines
133 B
Rust
6 lines
133 B
Rust
//! End-to-end tests for sandbox integration with agents and Claude
|
|
#[cfg(test)]
|
|
mod agent_sandbox;
|
|
#[cfg(test)]
|
|
mod claude_sandbox;
|