mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Update manpage and completions.
Autogenerated by the [sponsors-maintainers-man-completions](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/sponsors-maintainers-man-completions.yml) workflow.
This commit is contained in:
parent
0d17bbbec6
commit
c8756ddeb6
@ -346,7 +346,6 @@ _brew_audit() {
|
|||||||
case "${cur}" in
|
case "${cur}" in
|
||||||
-*)
|
-*)
|
||||||
__brewcomp "
|
__brewcomp "
|
||||||
--appcast
|
|
||||||
--audit-debug
|
--audit-debug
|
||||||
--cask
|
--cask
|
||||||
--debug
|
--debug
|
||||||
@ -362,7 +361,6 @@ _brew_audit() {
|
|||||||
--help
|
--help
|
||||||
--installed
|
--installed
|
||||||
--new
|
--new
|
||||||
--no-appcast
|
|
||||||
--no-signing
|
--no-signing
|
||||||
--online
|
--online
|
||||||
--only
|
--only
|
||||||
|
@ -328,7 +328,6 @@ __fish_brew_complete_arg 'analytics' -l verbose -d 'Make some output more verbos
|
|||||||
|
|
||||||
|
|
||||||
__fish_brew_complete_cmd 'audit' 'Check formula for Homebrew coding style violations'
|
__fish_brew_complete_cmd 'audit' 'Check formula for Homebrew coding style violations'
|
||||||
__fish_brew_complete_arg 'audit' -l appcast -d 'Audit the appcast'
|
|
||||||
__fish_brew_complete_arg 'audit' -l audit-debug -d 'Enable debugging and profiling of audit methods'
|
__fish_brew_complete_arg 'audit' -l audit-debug -d 'Enable debugging and profiling of audit methods'
|
||||||
__fish_brew_complete_arg 'audit' -l cask -d 'Treat all named arguments as casks'
|
__fish_brew_complete_arg 'audit' -l cask -d 'Treat all named arguments as casks'
|
||||||
__fish_brew_complete_arg 'audit' -l debug -d 'Display any debugging information'
|
__fish_brew_complete_arg 'audit' -l debug -d 'Display any debugging information'
|
||||||
@ -344,7 +343,6 @@ __fish_brew_complete_arg 'audit' -l git -d 'Run additional, slower style checks
|
|||||||
__fish_brew_complete_arg 'audit' -l help -d 'Show this message'
|
__fish_brew_complete_arg 'audit' -l help -d 'Show this message'
|
||||||
__fish_brew_complete_arg 'audit' -l installed -d 'Only check formulae and casks that are currently installed'
|
__fish_brew_complete_arg 'audit' -l installed -d 'Only check formulae and casks that are currently installed'
|
||||||
__fish_brew_complete_arg 'audit' -l new -d 'Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`'
|
__fish_brew_complete_arg 'audit' -l new -d 'Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`'
|
||||||
__fish_brew_complete_arg 'audit' -l no-appcast -d 'Audit the appcast'
|
|
||||||
__fish_brew_complete_arg 'audit' -l no-signing -d 'Audit for signed apps, which are required on ARM'
|
__fish_brew_complete_arg 'audit' -l no-signing -d 'Audit for signed apps, which are required on ARM'
|
||||||
__fish_brew_complete_arg 'audit' -l online -d 'Run additional, slower style checks that require a network connection'
|
__fish_brew_complete_arg 'audit' -l online -d 'Run additional, slower style checks that require a network connection'
|
||||||
__fish_brew_complete_arg 'audit' -l only -d 'Specify a comma-separated method list to only run the methods named `audit_`method'
|
__fish_brew_complete_arg 'audit' -l only -d 'Specify a comma-separated method list to only run the methods named `audit_`method'
|
||||||
|
@ -416,7 +416,6 @@ _brew_analytics() {
|
|||||||
# brew audit
|
# brew audit
|
||||||
_brew_audit() {
|
_brew_audit() {
|
||||||
_arguments \
|
_arguments \
|
||||||
'--appcast[Audit the appcast]' \
|
|
||||||
'--audit-debug[Enable debugging and profiling of audit methods]' \
|
'--audit-debug[Enable debugging and profiling of audit methods]' \
|
||||||
'--debug[Display any debugging information]' \
|
'--debug[Display any debugging information]' \
|
||||||
'(--skip-style --only-cops --except-cops)--display-cop-names[Include the RuboCop cop name for each violation in the output]' \
|
'(--skip-style --only-cops --except-cops)--display-cop-names[Include the RuboCop cop name for each violation in the output]' \
|
||||||
@ -430,7 +429,6 @@ _brew_audit() {
|
|||||||
'--help[Show this message]' \
|
'--help[Show this message]' \
|
||||||
'(--all)--installed[Only check formulae and casks that are currently installed]' \
|
'(--all)--installed[Only check formulae and casks that are currently installed]' \
|
||||||
'--new[Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`]' \
|
'--new[Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`]' \
|
||||||
'--no-appcast[Audit the appcast]' \
|
|
||||||
'--no-signing[Audit for signed apps, which are required on ARM]' \
|
'--no-signing[Audit for signed apps, which are required on ARM]' \
|
||||||
'--online[Run additional, slower style checks that require a network connection]' \
|
'--online[Run additional, slower style checks that require a network connection]' \
|
||||||
'(--except --only-cops --except-cops)--only[Specify a comma-separated method list to only run the methods named `audit_`method]' \
|
'(--except --only-cops --except-cops)--only[Specify a comma-separated method list to only run the methods named `audit_`method]' \
|
||||||
|
@ -908,8 +908,6 @@ non-zero status if any errors are found.
|
|||||||
Evaluate all available formulae and casks, whether installed or not, to audit them. Implied if `HOMEBREW_EVAL_ALL` is set.
|
Evaluate all available formulae and casks, whether installed or not, to audit them. Implied if `HOMEBREW_EVAL_ALL` is set.
|
||||||
* `--new`:
|
* `--new`:
|
||||||
Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`.
|
Run various additional style checks to determine if a new formula or cask is eligible for Homebrew. This should be used when creating new formula and implies `--strict` and `--online`.
|
||||||
* `--[no-]appcast`:
|
|
||||||
Audit the appcast.
|
|
||||||
* `--[no-]signing`:
|
* `--[no-]signing`:
|
||||||
Audit for signed apps, which are required on ARM
|
Audit for signed apps, which are required on ARM
|
||||||
* `--token-conflicts`:
|
* `--token-conflicts`:
|
||||||
|
@ -1263,10 +1263,6 @@ Evaluate all available formulae and casks, whether installed or not, to audit th
|
|||||||
Run various additional style checks to determine if a new formula or cask is eligible for Homebrew\. This should be used when creating new formula and implies \fB\-\-strict\fR and \fB\-\-online\fR\.
|
Run various additional style checks to determine if a new formula or cask is eligible for Homebrew\. This should be used when creating new formula and implies \fB\-\-strict\fR and \fB\-\-online\fR\.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-[no\-]appcast\fR
|
|
||||||
Audit the appcast\.
|
|
||||||
.
|
|
||||||
.TP
|
|
||||||
\fB\-\-[no\-]signing\fR
|
\fB\-\-[no\-]signing\fR
|
||||||
Audit for signed apps, which are required on ARM
|
Audit for signed apps, which are required on ARM
|
||||||
.
|
.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user