vdev/commands/check/
mod.rs

1mod component_docs;
2mod component_features;
3mod deny;
4mod examples;
5mod fmt;
6mod licenses;
7mod markdown;
8mod rust;
9mod scripts;
10
11crate::cli_subcommands! {
12    "Check parts of the Vector code base..."
13    component_docs,
14    component_features,
15    deny,
16    docs,
17    events,
18    examples,
19    fmt,
20    licenses,
21    markdown,
22    rust,
23    scripts,
24}
25
26// These should eventually be migrated to Rust code
27
28crate::script_wrapper! {
29    docs = "Check that all /docs files are valid"
30        => "check-docs.sh"
31}
32
33crate::script_wrapper! {
34    events = "Check that events satisfy patterns set in <https://github.com/vectordotdev/vector/blob/master/docs/specs/instrumentation.md>"
35        => "check-events"
36}