You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/cli.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,13 @@ import (
25
25
funcRoot() *cobra.Command {
26
26
rootCommand:=&cobra.Command{
27
27
Short: "Linter for Arduino projects.",
28
-
Long: "arduino-check checks specification compliance and for other common problems with Arduino projects",
28
+
Long: "arduino-check checks for specification compliance and other common problems with Arduino projects",
29
29
DisableFlagsInUseLine: true,
30
30
Use: "arduino-check [FLAG]... [PROJECT_PATH]...\n\nRun checks on PROJECT_PATH or current path if no PROJECT_PATH argument provided.",
31
31
Run: command.ArduinoCheck,
32
32
}
33
33
34
-
rootCommand.PersistentFlags().String("format", "text", "The output format, can be {text|json}.")
34
+
rootCommand.PersistentFlags().String("format", "text", "The output format can be {text|json}.")
35
35
rootCommand.PersistentFlags().String("library-manager", "", "Configure the checks for libraries in the Arduino Library Manager index. Can be {submit|update|false}.\nsubmit: Also run additional checks required to pass before a library is accepted for inclusion in the index.\nupdate: Also run additional checks required to pass before new releases of a library already in the index are accepted.\nfalse: Don't run any Library Manager-specific checks.")
36
36
rootCommand.PersistentFlags().String("log-format", "text", "The output format for the logs, can be {text|json}.")
37
37
rootCommand.PersistentFlags().String("log-level", "panic", "Messages with this level and above will be logged. Valid levels are: trace, debug, info, warn, error, fatal, panic")
0 commit comments