brew/Library/Homebrew/official_taps.rb
Mike McQuaid c6a9227e08
More official Homebrew taps
Make `brew alias`, `brew autoupdate` and `brew command-not-found-init`
official commands. This means we:
- make sure we don't break their style with `brew style` changes
- autotap them when you run the command and they aren't installed
- include them in the manpage
2021-04-23 13:43:55 +01:00

39 lines
686 B
Ruby

# typed: true
# frozen_string_literal: true
OFFICIAL_CASK_TAPS = %w[
cask
versions
].freeze
OFFICIAL_CMD_TAPS = {
"homebrew/aliases" => ["alias", "unalias"],
"homebrew/autoupdate" => ["autoupdate"],
"homebrew/bundle" => ["bundle"],
"homebrew/command-not-found" => ["command-not-found-init", "which-formula", "which-update"],
"homebrew/test-bot" => ["test-bot"],
"homebrew/services" => ["services"],
}.freeze
DEPRECATED_OFFICIAL_TAPS = %w[
apache
binary
cask-eid
completions
devel-only
dupes
emacs
fuse
games
gui
head-only
livecheck
nginx
php
python
science
tex
versions
x11
].freeze