2020-07-27 12:57:29 +01:00
|
|
|
# TODO: Try getting more rules in sync.
|
|
|
|
|
|
2020-12-28 14:16:32 +00:00
|
|
|
require:
|
|
|
|
|
- ./Homebrew/rubocops.rb
|
|
|
|
|
- rubocop-performance
|
|
|
|
|
- rubocop-rails
|
2020-07-27 12:57:29 +01:00
|
|
|
|
2020-08-31 02:02:05 +02:00
|
|
|
inherit_mode:
|
|
|
|
|
merge:
|
|
|
|
|
- Include
|
|
|
|
|
- Exclude
|
|
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
AllCops:
|
|
|
|
|
TargetRubyVersion: 2.6
|
|
|
|
|
DisplayCopNames: false
|
2022-06-28 10:07:56 +01:00
|
|
|
ActiveSupportExtensionsEnabled: true
|
2020-07-27 12:57:29 +01:00
|
|
|
# enable all pending rubocops
|
|
|
|
|
NewCops: enable
|
2020-10-10 19:29:49 +02:00
|
|
|
Include:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/*.rbi"
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Homebrew/sorbet/rbi/gems/**/*.rbi"
|
|
|
|
|
- "Homebrew/sorbet/rbi/hidden-definitions/**/*.rbi"
|
|
|
|
|
- "Homebrew/sorbet/rbi/todo.rbi"
|
|
|
|
|
- "Homebrew/sorbet/rbi/upstream.rbi"
|
|
|
|
|
- "Homebrew/bin/*"
|
|
|
|
|
- "Homebrew/vendor/**/*"
|
|
|
|
|
- "Taps/*/*/vendor/**/*"
|
2017-01-18 15:54:47 +05:30
|
|
|
|
2020-08-31 00:13:15 +02:00
|
|
|
Cask/Desc:
|
2020-11-30 14:42:49 +00:00
|
|
|
Description: "Ensure that the desc stanza conforms to various content and style checks."
|
2020-08-31 00:13:15 +02:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
Cask/HomepageUrlTrailingSlash:
|
2020-11-30 14:42:49 +00:00
|
|
|
Description: "Ensure that the homepage url has a slash after the domain name."
|
2020-08-31 00:13:15 +02:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
Cask/NoDslVersion:
|
2020-11-30 14:42:49 +00:00
|
|
|
Description: "Do not use the deprecated DSL version syntax in your cask header."
|
2020-08-31 00:13:15 +02:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
Cask/StanzaGrouping:
|
2021-06-23 13:23:18 -07:00
|
|
|
Description: "Ensure that cask stanzas are grouped correctly. More info at https://docs.brew.sh/Cask-Cookbook#stanza-order"
|
2020-08-31 00:13:15 +02:00
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
Cask/StanzaOrder:
|
2021-06-23 13:23:18 -07:00
|
|
|
Description: "Ensure that cask stanzas are sorted correctly. More info at https://docs.brew.sh/Cask-Cookbook#stanza-order"
|
2020-08-31 00:13:15 +02:00
|
|
|
Enabled: true
|
|
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# enable all formulae audits
|
2017-07-18 19:10:12 +05:30
|
|
|
FormulaAudit:
|
2017-05-24 00:08:31 +05:30
|
|
|
Enabled: true
|
|
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# enable all formulae strict audits
|
2017-07-18 19:10:12 +05:30
|
|
|
FormulaAuditStrict:
|
2017-05-22 13:09:49 +05:30
|
|
|
Enabled: true
|
|
|
|
|
|
2022-11-19 21:46:58 -08:00
|
|
|
Homebrew/MoveToExtendOS:
|
|
|
|
|
Exclude:
|
2022-11-21 22:14:04 -08:00
|
|
|
- "Homebrew/{extend,test,requirements}/**/*"
|
2022-11-19 21:46:58 -08:00
|
|
|
- "Taps/**/*"
|
2022-11-20 15:12:40 -08:00
|
|
|
- "Homebrew/os.rb"
|
2022-11-19 21:46:58 -08:00
|
|
|
|
2021-04-14 16:08:37 +01:00
|
|
|
# enable all Homebrew custom cops
|
|
|
|
|
Homebrew:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
2020-12-28 15:58:55 +00:00
|
|
|
# makes DSL usage ugly.
|
|
|
|
|
Layout/SpaceBeforeBrackets:
|
|
|
|
|
Exclude:
|
|
|
|
|
- "**/*_spec.rb"
|
|
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
|
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Use `<<~` for heredocs.
|
|
|
|
|
Layout/HeredocIndentation:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# Keyword arguments don't have the same readability
|
|
|
|
|
# problems as normal parameters.
|
|
|
|
|
Metrics/ParameterLists:
|
|
|
|
|
CountKeywordArgs: false
|
|
|
|
|
|
2021-01-13 09:22:06 +01:00
|
|
|
# Allow dashes in filenames.
|
|
|
|
|
Naming/FileName:
|
|
|
|
|
Regex: !ruby/regexp /^[\w\@\-\+\.]+(\.rb)?$/
|
|
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Implicitly allow EOS as we use it everywhere.
|
|
|
|
|
Naming/HeredocDelimiterNaming:
|
|
|
|
|
ForbiddenDelimiters:
|
|
|
|
|
- END, EOD, EOF
|
|
|
|
|
|
2021-07-06 23:49:03 +05:30
|
|
|
Naming/InclusiveLanguage:
|
|
|
|
|
CheckStrings: true
|
|
|
|
|
FlaggedTerms:
|
|
|
|
|
# TODO: If possible, make this stricter.
|
|
|
|
|
slave:
|
|
|
|
|
AllowedRegex:
|
2021-08-16 13:58:13 +01:00
|
|
|
- "gitslave" # Used in formula `gitslave`
|
|
|
|
|
- "log_slave" # Used in formula `ssdb`
|
2021-07-06 23:49:03 +05:30
|
|
|
- "ssdb_slave" # Used in formula `ssdb`
|
2021-08-16 13:58:13 +01:00
|
|
|
- "var_slave" # Used in formula `ssdb`
|
2021-07-06 23:49:03 +05:30
|
|
|
- "patches/13_fix_scope_for_show_slave_status_data.patch" # Used in formula `mytop`
|
|
|
|
|
|
2020-10-10 19:29:49 +02:00
|
|
|
Naming/MethodName:
|
2022-04-23 01:38:51 +01:00
|
|
|
AllowedPatterns:
|
2020-11-16 01:52:57 +01:00
|
|
|
- '\A(fetch_)?HEAD\?\Z'
|
2020-10-10 19:29:49 +02:00
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Both styles are used depending on context,
|
|
|
|
|
# e.g. `sha256` and `something_countable_1`.
|
|
|
|
|
Naming/VariableNumber:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2021-01-18 10:55:00 -05:00
|
|
|
# Require &&/|| instead of and/or
|
|
|
|
|
Style/AndOr:
|
|
|
|
|
Enabled: true
|
|
|
|
|
EnforcedStyle: always
|
|
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Avoid leaking resources.
|
|
|
|
|
Style/AutoResourceCleanup:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# This makes these a little more obvious.
|
|
|
|
|
Style/BarePercentLiterals:
|
|
|
|
|
EnforcedStyle: percent_q
|
|
|
|
|
|
|
|
|
|
# Use consistent style for better readability.
|
|
|
|
|
Style/CollectionMethods:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
2022-06-15 06:07:25 +01:00
|
|
|
# This is quite a large change, so don't enforce this yet for formulae.
|
|
|
|
|
# We should consider doing so in the future, but be aware of the impact on third-party taps.
|
|
|
|
|
Style/FetchEnvVar:
|
|
|
|
|
Exclude:
|
|
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/Formula/*.rb"
|
|
|
|
|
- "**/Formula/*.rb"
|
|
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Prefer tokens with type annotations for consistency
|
|
|
|
|
# between formatting numbers and strings.
|
|
|
|
|
Style/FormatStringToken:
|
|
|
|
|
EnforcedStyle: annotated
|
|
|
|
|
|
|
|
|
|
# autocorrectable and more readable
|
|
|
|
|
Style/HashEachMethods:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Style/HashTransformKeys:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Style/HashTransformValues:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
2020-08-18 10:58:32 -04:00
|
|
|
# Allow for license expressions
|
|
|
|
|
Style/HashAsLastArrayItem:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/Formula/*.rb"
|
|
|
|
|
- "**/Formula/*.rb"
|
2020-08-18 10:58:32 -04:00
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# Enabled now LineLength is lowish.
|
|
|
|
|
Style/IfUnlessModifier:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# Only use this for numbers >= `1_000_000`.
|
|
|
|
|
Style/NumericLiterals:
|
|
|
|
|
MinDigits: 7
|
|
|
|
|
Strict: true
|
2020-11-17 16:05:11 +00:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/Brewfile"
|
2020-07-27 12:57:29 +01:00
|
|
|
|
|
|
|
|
# Zero-prefixed octal literals are widely used and understood.
|
|
|
|
|
Style/NumericLiteralPrefix:
|
|
|
|
|
EnforcedOctalStyle: zero_only
|
|
|
|
|
|
|
|
|
|
# Rescuing `StandardError` is an understood default.
|
|
|
|
|
Style/RescueStandardError:
|
|
|
|
|
EnforcedStyle: implicit
|
|
|
|
|
|
|
|
|
|
# Returning `nil` is unnecessary.
|
|
|
|
|
Style/ReturnNil:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# We have no use for using `warn` because we
|
|
|
|
|
# are calling Ruby with warnings disabled.
|
|
|
|
|
Style/StderrPuts:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
|
|
# Use consistent method names.
|
|
|
|
|
Style/StringMethods:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# An array of symbols is more readable than a symbol array
|
|
|
|
|
# and also allows for easier grepping.
|
|
|
|
|
Style/SymbolArray:
|
|
|
|
|
EnforcedStyle: brackets
|
|
|
|
|
|
|
|
|
|
# Trailing commas make diffs nicer.
|
|
|
|
|
Style/TrailingCommaInArguments:
|
|
|
|
|
EnforcedStyleForMultiline: comma
|
|
|
|
|
Style/TrailingCommaInArrayLiteral:
|
|
|
|
|
EnforcedStyleForMultiline: comma
|
|
|
|
|
Style/TrailingCommaInHashLiteral:
|
|
|
|
|
EnforcedStyleForMultiline: comma
|
|
|
|
|
|
|
|
|
|
# Does not hinder readability, so might as well enable it.
|
|
|
|
|
Performance/CaseWhenSplat:
|
|
|
|
|
Enabled: true
|
|
|
|
|
|
|
|
|
|
# Makes code less readable for minor performance increases.
|
|
|
|
|
Performance/Caller:
|
|
|
|
|
Enabled: false
|
2020-11-17 11:15:02 +01:00
|
|
|
|
2020-11-16 22:18:56 +01:00
|
|
|
# Makes code less readable for minor performance increases.
|
|
|
|
|
Performance/MethodObjectAsBlock:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2020-11-30 14:42:49 +00:00
|
|
|
Rails:
|
2021-12-14 22:07:37 +00:00
|
|
|
# Selectively enable what we want.
|
|
|
|
|
Enabled: false
|
|
|
|
|
# Cannot use ActiveSupport in RuboCops.
|
2020-11-30 14:42:49 +00:00
|
|
|
Exclude:
|
|
|
|
|
- "Homebrew/rubocops/**/*"
|
|
|
|
|
|
2021-12-14 22:07:37 +00:00
|
|
|
# These relate to ActiveSupport and not other parts of Rails.
|
|
|
|
|
Rails/ActiveSupportAliases:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/Blank:
|
|
|
|
|
Enabled: true
|
2021-12-27 19:47:37 +00:00
|
|
|
Rails/CompactBlank:
|
|
|
|
|
Enabled: true
|
2020-11-30 14:42:49 +00:00
|
|
|
Rails/Delegate:
|
2021-12-14 22:07:37 +00:00
|
|
|
Enabled: false # TODO
|
|
|
|
|
Rails/DelegateAllowBlank:
|
|
|
|
|
Enabled: true
|
2021-12-27 19:47:37 +00:00
|
|
|
Rails/DurationArithmetic:
|
|
|
|
|
Enabled: true
|
2021-12-14 22:07:37 +00:00
|
|
|
Rails/ExpandedDateRange:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/Inquiry:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/NegateInclude:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/PluralizationGrammar:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/Presence:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/Present:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/RelativeDateConstant:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/SafeNavigation:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/SafeNavigationWithBlank:
|
|
|
|
|
Enabled: true
|
2022-06-16 22:01:07 +01:00
|
|
|
Rails/StripHeredoc:
|
|
|
|
|
Enabled: true
|
|
|
|
|
Rails/ToFormattedS:
|
|
|
|
|
Enabled: true
|
2020-11-30 14:42:49 +00:00
|
|
|
|
2020-08-31 02:02:05 +02:00
|
|
|
# Don't allow cops to be disabled in casks and formulae.
|
2020-04-17 10:21:10 +01:00
|
|
|
Style/DisableCopsWithinSourceCodeDirective:
|
2021-02-02 10:17:11 +00:00
|
|
|
Enabled: true
|
2020-08-31 02:02:05 +02:00
|
|
|
Include:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2020-04-17 10:21:10 +01:00
|
|
|
|
2018-11-02 17:17:35 +00:00
|
|
|
# make our hashes consistent
|
2019-11-28 15:10:50 +00:00
|
|
|
Layout/HashAlignment:
|
2018-11-02 17:17:35 +00:00
|
|
|
EnforcedHashRocketStyle: table
|
|
|
|
|
EnforcedColonStyle: table
|
|
|
|
|
|
2020-08-31 02:02:05 +02:00
|
|
|
# `system` is a special case and aligns on second argument, so allow this for formulae.
|
2019-11-28 15:10:50 +00:00
|
|
|
Layout/ArgumentAlignment:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/Formula/*.rb"
|
|
|
|
|
- "**/Formula/*.rb"
|
2016-09-25 02:41:14 +02:00
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# this is a bit less "floaty"
|
2017-05-28 16:59:53 +01:00
|
|
|
Layout/CaseIndentation:
|
|
|
|
|
EnforcedStyle: end
|
2016-09-18 14:27:09 +01:00
|
|
|
|
2021-08-16 13:58:13 +01:00
|
|
|
# Need to allow #: for external commands.
|
|
|
|
|
Layout/LeadingCommentSpace:
|
|
|
|
|
Exclude:
|
|
|
|
|
- "Taps/*/*/cmd/*.rb"
|
|
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# this is a bit less "floaty"
|
2018-03-05 11:46:38 +00:00
|
|
|
Layout/EndAlignment:
|
2018-09-02 20:14:54 +01:00
|
|
|
EnforcedStyleAlignWith: start_of_line
|
2016-09-25 02:41:14 +02:00
|
|
|
|
2017-05-28 16:59:53 +01:00
|
|
|
# conflicts with DSL-style path concatenation with `/`
|
|
|
|
|
Layout/SpaceAroundOperators:
|
2016-09-18 14:27:09 +01:00
|
|
|
Enabled: false
|
|
|
|
|
|
2020-03-13 21:14:24 +00:00
|
|
|
# layout is not configurable (https://github.com/rubocop-hq/rubocop/issues/6254).
|
2018-09-18 10:30:59 +10:00
|
|
|
Layout/RescueEnsureAlignment:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2021-02-11 13:24:19 +00:00
|
|
|
# significantly less indentation involved; more consistent
|
|
|
|
|
Layout/FirstArrayElementIndentation:
|
|
|
|
|
EnforcedStyle: consistent
|
|
|
|
|
Layout/FirstHashElementIndentation:
|
|
|
|
|
EnforcedStyle: consistent
|
|
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# favour parens-less DSL-style arguments
|
|
|
|
|
Lint/AmbiguousBlockAssociation:
|
2016-09-18 14:27:09 +01:00
|
|
|
Enabled: false
|
2016-09-25 02:41:14 +02:00
|
|
|
|
2021-09-30 12:30:45 +01:00
|
|
|
Lint/RequireRelativeSelfPath:
|
|
|
|
|
# bugged on formula-analytics
|
|
|
|
|
# https://github.com/Homebrew/brew/pull/12152/checks?check_run_id=3755137378#step:15:60
|
|
|
|
|
Exclude:
|
|
|
|
|
- "Taps/homebrew/homebrew-formula-analytics/*/*.rb"
|
|
|
|
|
|
2020-11-16 03:13:39 +01:00
|
|
|
Lint/DuplicateBranch:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2020-11-16 03:13:39 +01:00
|
|
|
|
2020-11-09 20:03:48 +11:00
|
|
|
# needed for lazy_object magic
|
|
|
|
|
Naming/MemoizedInstanceVariableName:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Homebrew/lazy_object.rb"
|
2020-11-09 20:03:48 +11:00
|
|
|
|
2020-09-15 13:39:06 +01:00
|
|
|
# useful for metaprogramming in RSpec
|
|
|
|
|
Lint/ConstantDefinitionInBlock:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/*_spec.rb"
|
2020-09-15 13:39:06 +01:00
|
|
|
|
2017-05-28 16:59:53 +01:00
|
|
|
# so many of these in formulae and can't be autocorrected
|
2016-09-18 14:27:09 +01:00
|
|
|
Lint/ParenthesesAsGroupedExpression:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/Formula/*.rb"
|
|
|
|
|
- "**/Formula/*.rb"
|
2016-09-18 14:27:09 +01:00
|
|
|
|
2020-08-31 02:02:05 +02:00
|
|
|
# Most metrics don't make sense to apply for casks/formulae/taps.
|
2017-05-28 16:59:53 +01:00
|
|
|
Metrics/AbcSize:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2020-08-31 02:02:05 +02:00
|
|
|
Metrics/BlockLength:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2017-05-28 16:59:53 +01:00
|
|
|
Metrics/ClassLength:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2017-05-28 16:59:53 +01:00
|
|
|
Metrics/CyclomaticComplexity:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2018-09-02 20:14:54 +01:00
|
|
|
Metrics/MethodLength:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2018-12-03 13:23:20 +01:00
|
|
|
Metrics/ModuleLength:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2018-09-02 20:14:54 +01:00
|
|
|
Metrics/PerceivedComplexity:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2020-08-31 02:02:05 +02:00
|
|
|
|
|
|
|
|
# allow those that are standard
|
|
|
|
|
# TODO: try to remove some of these
|
|
|
|
|
Naming/MethodParameterName:
|
2022-10-30 21:43:56 +00:00
|
|
|
inherit_mode:
|
|
|
|
|
merge:
|
|
|
|
|
- AllowedNames
|
2020-08-31 02:02:05 +02:00
|
|
|
AllowedNames:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "a"
|
|
|
|
|
- "b"
|
|
|
|
|
- "cc"
|
|
|
|
|
- "c1"
|
|
|
|
|
- "c2"
|
|
|
|
|
- "d"
|
|
|
|
|
- "e"
|
|
|
|
|
- "f"
|
|
|
|
|
- "ff"
|
|
|
|
|
- "fn"
|
|
|
|
|
- "id"
|
|
|
|
|
- "o"
|
|
|
|
|
- "p"
|
|
|
|
|
- "pr"
|
|
|
|
|
- "r"
|
|
|
|
|
- "rb"
|
|
|
|
|
- "s"
|
|
|
|
|
- "v"
|
2018-09-02 20:14:54 +01:00
|
|
|
|
2020-03-12 20:39:15 +00:00
|
|
|
# GitHub diff UI wraps beyond 118 characters
|
2019-12-19 12:01:51 +00:00
|
|
|
Layout/LineLength:
|
2020-03-12 20:39:15 +00:00
|
|
|
Max: 118
|
2017-10-26 16:06:29 +01:00
|
|
|
# ignore manpage comments and long single-line strings
|
2022-04-23 01:38:51 +01:00
|
|
|
AllowedPatterns:
|
2020-11-30 14:42:49 +00:00
|
|
|
[
|
|
|
|
|
"#: ",
|
|
|
|
|
' url "',
|
|
|
|
|
' mirror "',
|
|
|
|
|
" plist_options ",
|
|
|
|
|
' appcast "',
|
|
|
|
|
' executable: "',
|
|
|
|
|
' font "',
|
|
|
|
|
' homepage "',
|
|
|
|
|
' name "',
|
|
|
|
|
' pkg "',
|
|
|
|
|
' pkgutil: "',
|
2021-02-02 11:52:28 +00:00
|
|
|
" sha256 cellar: ",
|
2021-02-03 09:32:08 -05:00
|
|
|
" sha256 ",
|
2020-11-30 14:42:49 +00:00
|
|
|
"#{language}",
|
|
|
|
|
"#{version.",
|
|
|
|
|
' "/Library/Application Support/',
|
|
|
|
|
'"/Library/Caches/',
|
|
|
|
|
'"/Library/PreferencePanes/',
|
|
|
|
|
' "~/Library/Application Support/',
|
|
|
|
|
'"~/Library/Caches/',
|
|
|
|
|
'"~/Application Support',
|
|
|
|
|
" was verified as official when first introduced to the cask",
|
|
|
|
|
]
|
2020-07-27 12:57:29 +01:00
|
|
|
|
2020-09-20 05:57:37 +02:00
|
|
|
Sorbet/FalseSigil:
|
2020-10-10 19:29:49 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "Homebrew/test/**/Casks/**/*.rb"
|
2020-10-10 19:29:49 +02:00
|
|
|
|
|
|
|
|
Sorbet/StrictSigil:
|
2021-12-04 03:13:15 +00:00
|
|
|
inherit_mode:
|
|
|
|
|
override:
|
|
|
|
|
- Include
|
2020-10-20 00:56:50 +02:00
|
|
|
Enabled: true
|
2020-10-10 19:29:49 +02:00
|
|
|
Include:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/*.rbi"
|
2020-09-20 05:57:37 +02:00
|
|
|
|
|
|
|
|
# Try getting rid of these.
|
|
|
|
|
Sorbet/ConstantsFromStrings:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2020-08-31 02:02:05 +02:00
|
|
|
# Avoid false positives on modifiers used on symbols of methods
|
|
|
|
|
# See https://github.com/rubocop-hq/rubocop/issues/5953
|
|
|
|
|
Style/AccessModifierDeclarations:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2020-10-20 12:03:48 +02:00
|
|
|
# Conflicts with type signatures on `attr_*`s.
|
2020-08-31 02:02:05 +02:00
|
|
|
Style/AccessorGrouping:
|
2020-10-20 12:03:48 +02:00
|
|
|
Enabled: false
|
2020-08-31 02:02:05 +02:00
|
|
|
|
|
|
|
|
# make rspec formatting more flexible
|
|
|
|
|
Style/BlockDelimiters:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Homebrew/**/*_spec.rb"
|
|
|
|
|
- "Homebrew/**/shared_examples/**/*.rb"
|
2020-08-31 02:02:05 +02:00
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# TODO: remove this when possible.
|
|
|
|
|
Style/ClassVars:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/developer/bin/*"
|
2016-09-25 02:41:14 +02:00
|
|
|
|
2020-08-31 00:13:15 +02:00
|
|
|
# Don't enforce documentation in casks or formulae.
|
2016-09-25 02:41:14 +02:00
|
|
|
Style/Documentation:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/**/*"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/*.rbi"
|
2020-08-31 02:02:05 +02:00
|
|
|
|
|
|
|
|
Style/DocumentationMethod:
|
|
|
|
|
Include:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Homebrew/formula.rb"
|
2016-09-25 02:41:14 +02:00
|
|
|
|
2020-08-31 00:13:15 +02:00
|
|
|
# Not used for casks and formulae.
|
2018-09-02 20:14:54 +01:00
|
|
|
Style/FrozenStringLiteralComment:
|
2020-08-31 02:02:05 +02:00
|
|
|
EnforcedStyle: always
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "Homebrew/test/**/Casks/**/*.rb"
|
|
|
|
|
- "**/*.rbi"
|
|
|
|
|
- "**/Brewfile"
|
2017-05-28 16:59:53 +01:00
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# TODO: remove this when possible.
|
|
|
|
|
Style/GlobalVars:
|
|
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "**/developer/bin/*"
|
2020-07-27 12:57:29 +01:00
|
|
|
|
2020-03-13 21:14:24 +00:00
|
|
|
# potential for errors in formulae too high with this
|
2016-10-01 12:13:09 +01:00
|
|
|
Style/GuardClause:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2016-10-01 12:13:09 +01:00
|
|
|
|
2020-07-27 12:57:29 +01:00
|
|
|
# avoid hash rockets where possible
|
2016-10-01 12:13:09 +01:00
|
|
|
Style/HashSyntax:
|
2020-07-27 12:57:29 +01:00
|
|
|
EnforcedStyle: ruby19
|
2020-03-13 21:14:24 +00:00
|
|
|
|
2021-11-16 12:07:50 +00:00
|
|
|
# OpenStruct is a nice helper.
|
|
|
|
|
Style/OpenStructUse:
|
|
|
|
|
Enabled: false
|
|
|
|
|
|
2020-08-19 17:12:32 +01:00
|
|
|
# so many of these in formulae and can't be autocorrected
|
|
|
|
|
Style/StringConcatenation:
|
2020-08-31 02:02:05 +02:00
|
|
|
Exclude:
|
2020-11-30 14:42:49 +00:00
|
|
|
- "Taps/*/*/*.rb"
|
|
|
|
|
- "/**/{Formula,Casks}/*.rb"
|
|
|
|
|
- "**/{Formula,Casks}/*.rb"
|
2020-08-19 17:12:32 +01:00
|
|
|
|
2016-09-25 02:41:14 +02:00
|
|
|
# ruby style guide favorite
|
|
|
|
|
Style/StringLiterals:
|
|
|
|
|
EnforcedStyle: double_quotes
|
2016-09-18 14:27:09 +01:00
|
|
|
|
2016-09-25 02:41:14 +02:00
|
|
|
# consistency with above
|
|
|
|
|
Style/StringLiteralsInInterpolation:
|
|
|
|
|
EnforcedStyle: double_quotes
|
2017-05-28 16:59:53 +01:00
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# make things a bit easier to read
|
2016-09-21 15:14:15 +02:00
|
|
|
Style/TernaryParentheses:
|
2017-05-28 16:59:53 +01:00
|
|
|
EnforcedStyle: require_parentheses_when_complex
|
2016-09-21 15:14:15 +02:00
|
|
|
|
2021-03-03 01:39:11 -08:00
|
|
|
# `unless ... ||` and `unless ... &&` are hard to mentally parse
|
|
|
|
|
Style/UnlessLogicalOperators:
|
|
|
|
|
Enabled: true
|
|
|
|
|
EnforcedStyle: forbid_logical_operators
|
|
|
|
|
|
2018-09-02 20:14:54 +01:00
|
|
|
# a bit confusing to non-Rubyists but useful for longer arrays
|
2016-09-25 02:41:14 +02:00
|
|
|
Style/WordArray:
|
2017-05-28 16:59:53 +01:00
|
|
|
MinSize: 4
|
2020-07-27 12:57:29 +01:00
|
|
|
|
|
|
|
|
# would rather freeze too much than too little
|
|
|
|
|
Style/MutableConstant:
|
|
|
|
|
EnforcedStyle: strict
|
|
|
|
|
|
|
|
|
|
# unused keyword arguments improve APIs
|
|
|
|
|
Lint/UnusedMethodArgument:
|
|
|
|
|
AllowUnusedKeywordArguments: true
|