vdev/commands/check/
mod.rs

1crate::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    version,
15}
16
17// These should eventually be migrated to Rust code
18
19crate::script_wrapper! {
20    docs = "Check that all /docs files are valid"
21        => "check-docs.sh"
22}
23
24crate::script_wrapper! {
25    events = "Check that events satisfy patterns set in <https://github.com/vectordotdev/vector/blob/master/docs/specs/instrumentation.md>"
26        => "check-events"
27}
28
29crate::script_wrapper! {
30    version = "Check that Vector's version is correct, accounting for recent changes"
31        => "check-version.rb"
32}