brew/Library/Homebrew/.rubocop.yml

54 lines
954 B
YAML
Raw Normal View History

inherit_from:
- ../.rubocop_rspec.yml
- .rubocop_todo.yml
# make rspec formatting more flexible
Layout/MultilineMethodCallIndentation:
2016-10-23 14:44:14 +02:00
Exclude:
- "**/*_spec.rb"
2016-10-23 14:44:14 +02:00
# `formula do` uses nested method definitions
Lint/NestedMethodDefinition:
Exclude:
- "test/**/*"
# TODO: Try to bring down all metrics maximums.
Metrics/AbcSize:
Max: 275
Metrics/BlockLength:
Max: 100
2020-03-16 01:37:49 +05:30
Exclude:
- "test/**/*"
Metrics/BlockNesting:
Max: 5
Metrics/ClassLength:
Max: 800
Exclude:
- "formula.rb"
- "formula_installer.rb"
Metrics/CyclomaticComplexity:
Max: 80
Metrics/PerceivedComplexity:
Max: 90
Metrics/MethodLength:
Max: 260
Metrics/ModuleLength:
2021-02-12 07:27:24 +05:30
Max: 600
2020-08-18 10:58:32 -04:00
Exclude:
- "test/**/*"
Naming/PredicateName:
# Can't rename these.
2021-01-13 09:22:06 +01:00
AllowedMethods:
- is_a?
- is_32_bit?
- is_64_bit?
2020-08-18 10:58:32 -04:00
Style/HashAsLastArrayItem:
Exclude:
- "test/utils/spdx_spec.rb"
Style/BlockDelimiters:
BracesRequiredMethods:
- "sig"