chore: add fmt+clippy convention to CLAUDE.md and apply nightly fmt

This commit is contained in:
Christian Visintin
2026-03-21 10:46:38 +01:00
parent 36a830c8cc
commit 14704f4439
2 changed files with 5 additions and 2 deletions

View File

@@ -106,4 +106,5 @@ Platform-specific dependencies: SSH and FTP crates use different TLS backends on
## Other conventions
- Always run `cargo +nightly fmt --all` and `cargo clippy --no-default-features -- -Dwarnings` after modifying Rust code
- Always put plans to `./.claude/plans/`

View File

@@ -13,8 +13,10 @@ use remotefs_kube::KubeMultiPodFs as KubeFs;
use remotefs_smb::SmbOptions;
#[cfg(smb)]
use remotefs_smb::{SmbCredentials, SmbFs};
use remotefs_ssh::{NoCheckServerKey, RusshSession as SshSession};
use remotefs_ssh::{ScpFs, SftpFs, SshAgentIdentity, SshConfigParseRule, SshOpts};
use remotefs_ssh::{
NoCheckServerKey, RusshSession as SshSession, ScpFs, SftpFs, SshAgentIdentity,
SshConfigParseRule, SshOpts,
};
use remotefs_webdav::WebDAVFs;
#[cfg(not(smb))]