Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
21d57a0c
Commit
21d57a0c
authored
4 years ago
by
Markus Reiter
Browse files
Options
Downloads
Patches
Plain Diff
Move RuboCop rules into top-level `.rubocop.yml`.
parent
2b029b27
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Library/.rubocop.yml
+96
-21
96 additions, 21 deletions
Library/.rubocop.yml
Library/.rubocop_cask.yml
+1
-1
1 addition, 1 deletion
Library/.rubocop_cask.yml
Library/Homebrew/.rubocop.yml
+5
-105
5 additions, 105 deletions
Library/Homebrew/.rubocop.yml
with
102 additions
and
127 deletions
Library/.rubocop.yml
+
96
−
21
View file @
21d57a0c
...
...
@@ -2,11 +2,19 @@
require
:
./Homebrew/rubocops.rb
inherit_mode
:
merge
:
-
Include
-
Exclude
AllCops
:
TargetRubyVersion
:
2.6
DisplayCopNames
:
false
# enable all pending rubocops
NewCops
:
enable
Exclude
:
-
'
Homebrew/bin/*'
-
'
Homebrew/**/vendor/**/*'
Cask/Desc
:
Description
:
'
Ensure
that
the
desc
stanza
conforms
to
various
content
and
style
checks.'
...
...
@@ -44,10 +52,6 @@ FormulaAuditStrict:
Layout/HeredocIndentation
:
Enabled
:
true
# Not useful in casks and formulae.
Metrics/BlockLength
:
Enabled
:
false
# Keyword arguments don't have the same readability
# problems as normal parameters.
Metrics/ParameterLists
:
...
...
@@ -94,7 +98,8 @@ Style/HashTransformValues:
# Allow for license expressions
Style/HashAsLastArrayItem
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,}*.rb'
# Enabled now LineLength is lowish.
Style/IfUnlessModifier
:
...
...
@@ -147,18 +152,21 @@ Performance/CaseWhenSplat:
Performance/Caller
:
Enabled
:
false
#
d
on't allow cops to be disabled in formulae
#
D
on't allow cops to be disabled in
casks and
formulae
.
Style/DisableCopsWithinSourceCodeDirective
:
Enabled
:
true
Include
:
-
'
Taps/*/*/{Formula/,Casks/,}*.rb'
# make our hashes consistent
Layout/HashAlignment
:
EnforcedHashRocketStyle
:
table
EnforcedColonStyle
:
table
# `system` is a special case and aligns on second argument
# `system` is a special case and aligns on second argument
, so allow this for formulae.
Layout/ArgumentAlignment
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,}*.rb'
# this is a bit less "floaty"
Layout/CaseIndentation
:
...
...
@@ -183,25 +191,62 @@ Lint/AmbiguousBlockAssociation:
# so many of these in formulae and can't be autocorrected
# TODO: fix these as `ruby -w` complains about them.
Lint/AmbiguousRegexpLiteral
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,}*.rb'
# so many of these in formulae and can't be autocorrected
Lint/ParenthesesAsGroupedExpression
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,}*.rb'
#
m
ost metrics don't make sense to apply for formulae/taps
#
M
ost metrics don't make sense to apply for
casks/
formulae/taps
.
Metrics/AbcSize
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Metrics/BlockLength
:
Exclude
:
-
'
Taps/**/*'
Metrics/ClassLength
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Metrics/CyclomaticComplexity
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Metrics/MethodLength
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Metrics/ModuleLength
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Metrics/PerceivedComplexity
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
# allow those that are standard
# TODO: try to remove some of these
Naming/MethodParameterName
:
AllowedNames
:
-
'
_'
-
'
a'
-
'
b'
-
'
cc'
-
'
c1'
-
'
c2'
-
'
d'
-
'
e'
-
'
f'
-
'
ff'
-
'
fn'
-
'
id'
-
'
io'
-
'
o'
-
'
p'
-
'
pr'
-
'
r'
-
'
rb'
-
'
s'
-
'
to'
-
'
v'
# GitHub diff UI wraps beyond 118 characters
Layout/LineLength
:
...
...
@@ -214,6 +259,27 @@ Layout/LineLength:
'
"~/Library/Application
Support/'
,
'
"~/Library/Caches/'
,
'
"~/Application
Support'
,
'
was
verified
as
official
when
first
introduced
to
the
cask'
]
# Avoid false positives on modifiers used on symbols of methods
# See https://github.com/rubocop-hq/rubocop/issues/5953
Style/AccessModifierDeclarations
:
Enabled
:
false
# don't group nicely documented or private attr_readers
Style/AccessorGrouping
:
Exclude
:
-
'
Homebrew/formula.rb'
-
'
Homebrew/formulary.rb'
-
'
Homebrew/migrator.rb'
-
'
Homebrew/resource.rb'
-
'
Homebrew/system_command.rb'
-
'
Homebrew/tap.rb'
# make rspec formatting more flexible
Style/BlockDelimiters
:
Exclude
:
-
'
Homebrew/**/*_spec.rb'
-
'
Homebrew/**/shared_examples/**/*.rb'
# TODO: remove this when possible.
Style/ClassVars
:
Exclude
:
...
...
@@ -221,11 +287,18 @@ Style/ClassVars:
# Don't enforce documentation in casks or formulae.
Style/Documentation
:
Enabled
:
false
Exclude
:
-
'
Taps/**/*'
Style/DocumentationMethod
:
Include
:
-
'
Homebrew/formula.rb'
# Not used for casks and formulae.
Style/FrozenStringLiteralComment
:
Enabled
:
false
EnforcedStyle
:
always
Exclude
:
-
'
Taps/*/*/{Formula/,Casks/,}*.rb'
# TODO: remove this when possible.
Style/GlobalVars
:
...
...
@@ -234,7 +307,8 @@ Style/GlobalVars:
# potential for errors in formulae too high with this
Style/GuardClause
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,Casks/,}*.rb'
# avoid hash rockets where possible
Style/HashSyntax
:
...
...
@@ -242,7 +316,8 @@ Style/HashSyntax:
# so many of these in formulae and can't be autocorrected
Style/StringConcatenation
:
Enabled
:
false
Exclude
:
-
'
Taps/*/*/{Formula/,Casks/,}*.rb'
# ruby style guide favorite
Style/StringLiterals
:
...
...
This diff is collapsed.
Click to expand it.
Library/.rubocop_cask.yml
+
1
−
1
View file @
21d57a0c
# TODO: This file can be deleted once https://github.com/Homebrew/brew/pull/8542
# is in a stable release and `rubocop.yml` has been removed from all cask taps.
inherit_from
:
./
Homebrew/
.rubocop.yml
inherit_from
:
./.rubocop.yml
This diff is collapsed.
Click to expand it.
Library/Homebrew/.rubocop.yml
+
5
−
105
View file @
21d57a0c
...
...
@@ -2,27 +2,11 @@ inherit_from:
-
../.rubocop_rspec.yml
-
.rubocop_todo.yml
AllCops
:
Include
:
-
'
**/*.rb'
-
'
Library/Homebrew/.simplecov'
Exclude
:
-
'
bin/*'
-
'
**/vendor/**/*'
# messes up system formatting for formulae but good for Homebrew/brew
Layout/ArgumentAlignment
:
Enabled
:
true
# make rspec formatting more flexible
Layout/MultilineMethodCallIndentation
:
Exclude
:
-
'
**/*_spec.rb'
# so many of these in formulae but none in here
Lint/AmbiguousRegexpLiteral
:
Enabled
:
true
# TODO: add parentheses for these and remove
Lint/AssignmentInCondition
:
Enabled
:
false
...
...
@@ -32,123 +16,39 @@ Lint/NestedMethodDefinition:
Exclude
:
-
'
test/**/*'
# so many of these in formulae but none in here
Lint/ParenthesesAsGroupedExpression
:
Enabled
:
true
# TODO: try to bring down all metrics maximums
# TODO: Try to bring down all metrics maximums.
Metrics/AbcSize
:
Enabled
:
true
Max
:
250
Metrics/BlockLength
:
Enabled
:
true
Max
:
100
Exclude
:
-
'
test/**/*'
Metrics/BlockNesting
:
Enabled
:
true
Max
:
5
Metrics/ClassLength
:
Enabled
:
true
Max
:
800
Exclude
:
-
'
formula.rb'
-
'
formula_installer.rb'
Metrics/CyclomaticComplexity
:
Enabled
:
true
Max
:
80
Metrics/PerceivedComplexity
:
Max
:
90
Metrics/MethodLength
:
Enabled
:
true
Max
:
260
Metrics/ModuleLength
:
Enabled
:
true
Max
:
600
Exclude
:
-
'
test/**/*'
Metrics/PerceivedComplexity
:
Enabled
:
true
Max
:
90
# we won't change backward compatible predicate names
Naming/PredicateName
:
Exclude
:
-
'
compat/**/*'
# can't rename these
# Can't rename these.
AllowedMethods
:
is_32_bit?, is_64_bit?
# allow those that are standard
# TODO: try to remove some of these
Naming/MethodParameterName
:
AllowedNames
:
-
'
_'
-
'
a'
-
'
b'
-
'
cc'
-
'
c1'
-
'
c2'
-
'
d'
-
'
e'
-
'
f'
-
'
ff'
-
'
fn'
-
'
id'
-
'
io'
-
'
o'
-
'
p'
-
'
pr'
-
'
r'
-
'
rb'
-
'
s'
-
'
to'
-
'
v'
# Avoid false positives on modifiers used on symbols of methods
# See https://github.com/rubocop-hq/rubocop/issues/5953
Style/AccessModifierDeclarations
:
Enabled
:
false
# don't group nicely documented or private attr_readers
Style/AccessorGrouping
:
Exclude
:
-
'
formula.rb'
-
'
formulary.rb'
-
'
migrator.rb'
-
'
resource.rb'
-
'
system_command.rb'
-
'
tap.rb'
# make rspec formatting more flexible
Style/BlockDelimiters
:
Exclude
:
-
'
**/*_spec.rb'
-
'
**/shared_examples/**/*.rb'
# document our public APIs
Style/Documentation
:
Enabled
:
true
Style/DocumentationMethod
:
Enabled
:
true
Include
:
-
'
formula.rb'
# don't want this for formulae but re-enabled for Library/Homebrew
Style/FrozenStringLiteralComment
:
Enabled
:
true
EnforcedStyle
:
always
Exclude
:
-
'
**/Casks/**/*.rb'
# so many of these in formulae but none in here
Style/GuardClause
:
Enabled
:
true
# so many of these in formulae but none in here
Style/StringConcatenation
:
Enabled
:
true
-
'
**/Casks/**/*.rb'
# don't want this for formulae but re-enabled for Library/Homebrew
Style/HashAsLastArrayItem
:
Enabled
:
true
Exclude
:
-
'
test/utils/spdx_spec.rb'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment