vdev/commands/check/
mod.rs1crate::cli_subcommands! {
2 "Check parts of the Vector code base..."
3 mod component_docs,
4 mod component_features,
5 mod deny,
6 docs,
7 events,
8 mod examples,
9 mod fmt,
10 mod licenses,
11 mod markdown,
12 mod rust,
13 mod scripts,
14}
15
16crate::script_wrapper! {
19 docs = "Check that all /docs files are valid"
20 => "check-docs.sh"
21}
22
23crate::script_wrapper! {
24 events = "Check that events satisfy patterns set in <https://github.com/vectordotdev/vector/blob/master/docs/specs/instrumentation.md>"
25 => "check-events"
26}