Docs.rs
sshconfig-lint-0.4.0
sshconfig-lint 0.4.0
Permalink
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
Noah4ever
Dependencies
clap ^4.5
normal
dirs ^5.0
normal
glob ^0.3
normal
thiserror ^1.0
normal
assert_cmd ^2
dev
insta ^1
dev
predicates ^3
dev
tempfile ^3
dev
Versions
44.87%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module basic
sshconfig_
lint
0.4.0
Module basic
Module Items
Structs
In sshconfig_
lint::
rules
sshconfig_lint
::
rules
Module
basic
Copy item path
Source
Structs
§
Deprecated
Weak
Algorithms
Duplicate
Directives
Duplicate
Host
Warns when multiple Host blocks have the same pattern.
Identity
File
Exists
Errors when an IdentityFile points to a file that doesn’t exist. Skips paths containing
%
or
${
(template variables).
Insecure
Option
Warns about directives that weaken SSH security.
Unsafe
Control
Path
Warns when
ControlPath
doesn’t include the tokens needed to uniquely identify connections. The OpenSSH man page recommends that ControlPath include at least
%h
,
%p
, and
%r
(or alternatively
%C
).
Wildcard
Host
Order
Warns when
Host *
appears before more specific Host blocks. In OpenSSH, first match wins, so
Host *
should usually come last.