AllCops:
Exclude:
- 'test/**/*'
- 'spec/**/*'
- 'features/**/*'
- 'script/**/*'
- 'config/routes.rb'
TargetRubyVersion: 2.1
# These are all the cops that are enabled in the default configuration.
Description: Check indentation of private/protected visibility modifiers.
Enabled: true
Description: Check the naming of accessor methods for get_/set_.
Enabled: true
Description: 'Use alias_method instead of alias.'
Enabled: true
Description: >-
Align the elements of an array literal if they span more than
one line.
Enabled: true
Description: >-
Align the elements of a hash literal if they span more than
one line.
Enabled: true
Description: >-
Align the parameters of a method call if they span more
than one line.
Enabled: false
Description: 'Use &&/|| instead of and/or.'
Enabled: true
Description: 'Use Array#join instead of Array#*.'
Enabled: true
Description: 'Use only ascii symbols in comments.'
Enabled: true
Description: 'Use only ascii symbols in identifiers.'
Enabled: true
Description: 'Checks for uses of Module#attr.'
Enabled: true
Description: 'Avoid the use of BEGIN blocks.'
Enabled: true
Description: 'Checks if usage of %() or %Q() matches configuration.'
Enabled: true
Description: 'Do not use block comments.'
Enabled: true
Description: 'Put end statement of multiline block on its own line.'
Enabled: true
Description: >-
Avoid using {...} for multi-line blocks (multiline chaining is
always ugly).
Prefer {...} over do...end for single-line blocks.
Enabled: true
Description: 'Enforce braces style inside hash parameters.'
Enabled: true
Description: 'Avoid explicit use of the case equality operator(===).'
Enabled: true
Description: 'Indentation of when in a case/when/[else/]end.'
Enabled: true
Description: 'Checks for uses of character literals.'
Enabled: true
Description: 'Use CamelCase for classes and modules.'
Enabled: true
Description: 'Checks style of children classes and modules.'
Enabled: false
Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
Enabled: true
Description: 'Use self when defining module/class methods.'
Enabled: true
Description: 'Avoid the use of class variables.'
Enabled: true
Description: 'Preferred collection methods.'
Enabled: true
PreferredMethods:
collect: 'map'
collect!: 'map!'
inject: 'reduce'
detect: 'find'
find_all: 'select'
Description: 'Do not use :: for method call.'
Enabled: true
Description: >-
Checks formatting of special comments
(TODO, FIXME, OPTIMIZE, HACK, REVIEW).
Enabled: true
Description: 'Indentation of comments.'
Enabled: true
Description: 'Constants should use SCREAMING_SNAKE_CASE.'
Enabled: true
Description: 'Use def with parentheses when there are arguments.'
Enabled: true
Description: 'Checks for use of deprecated Hash methods.'
Enabled: true
Description: 'Document classes and non-namespace modules.'
Enabled: false
Description: 'Checks the position of the dot in multi-line method calls.'
EnforcedStyle: trailing
Enabled: true
Description: 'Checks for uses of double negation (!!).'
Enabled: false
Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
Enabled: false
Description: 'Use empty lines between defs.'
Enabled: true
Description: "Don't use several empty lines in a row."
Enabled: true
Description: "Keep blank lines around access modifiers."
Enabled: false
Description: "Keeps track of empty lines around block bodies."
Enabled: true
Description: "Keeps track of empty lines around class bodies."
Enabled: true
Description: "Keeps track of empty lines around module bodies."
Enabled: true
Description: "Keeps track of empty lines around method bodies."
Enabled: true
Description: 'Prefer literals to Array.new/Hash.new/String.new.'
Enabled: true
Description: 'Use UTF-8 as the source file encoding.'
EnforcedStyle: when_needed
Enabled: true
Description: 'Avoid the use of END blocks.'
Enabled: true
Description: 'Use Unix-style line endings.'
Enabled: true
Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
Enabled: true
Description: 'Use snake_case for source file names.'
Enabled: false
Exclude:
- 'db/**/*'
Description: 'Checks for flip flops'
Enabled: true
Description: 'Checks use of for or each in multiline loops.'
Enabled: true
Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
Enabled: true
Description: 'Do not introduce global variables.'
Enabled: true
Description: 'Check for conditionals that can be replaced with guard clauses'
Enabled: false
Description: >-
Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
{ :a => 1, :b => 2 }.
Enabled: true
Description: >-
Favor modifier if/unless usage when you have a
single-line body.
Enabled: true
Description: 'Never use if x; .... Use the ternary operator instead.'
Enabled: true
Description: 'Keep indentation straight.'
Enabled: true
Description: 'Use 2 spaces for indentation.'
Enabled: true
Description: >-
Checks the indentation of the first element in an array
literal.
Enabled: true
Description: 'Checks the indentation of the first key in a hash literal.'
Enabled: false
Description: 'Use the new lambda literal syntax for single-line blocks.'
Enabled: false
Description: 'Use lambda.call(...) instead of lambda.(...).'
Enabled: true
Description: 'Comments should start with a space.'
Enabled: true
Description: >-
Use \ instead of + or << to concatenate two string literals at
line end.
Enabled: true
Description: 'Do not use parentheses for method calls with no arguments.'
Enabled: true
Description: >-
Checks if the method definitions have or don't have
parentheses.
Enabled: true
Description: 'Use the configured style when naming methods.'
Enabled: true
Description: 'Checks for usage of `extend self` in modules.'
Enabled: true
Description: 'Avoid multi-line chains of blocks.'
Enabled: true
Description: 'Ensures newlines after multiline block do statements.'
Enabled: true
Description: 'Never use then for multi-line if/unless.'
Enabled: true
Description: >-
Avoid multi-line ?: (the ternary operator);
use if/unless instead.
Enabled: true
EnforcedStyle: indented
Enabled: true
Description: >-
Favor unless over if for negative conditions
(or control flow or).
Enabled: true
Description: 'Favor until over while for negative conditions.'
Enabled: true
Description: 'Use one expression per branch in a ternary operator.'
Enabled: true
Description: 'Use `next` to skip iteration instead of a condition at the end.'
Enabled: true
Description: 'Prefer x.nil? to x == nil.'
Enabled: true
Description: 'Checks for redundant nil checks.'
Enabled: true
Description: 'Use ! instead of not.'
Enabled: true
Description: >-
Add underscores to large numeric literals to improve their
readability.
Enabled: true
Description: >-
Favor the ternary operator(?:) over
if/then/else/end constructs.
Enabled: true
Description: 'When defining binary operators, name the argument other.'
Enabled: true
Description: >-
Don't use parentheses around the condition of an
Enabled: true
Description: 'Use `%`-literal delimiters consistently'
Enabled: true
Description: 'Checks if uses of %Q/%q match the configured preference.'
Enabled: true
Description: 'Avoid Perl-style regex back references.'
Enabled: true
Description: 'Check the names of predicate methods.'
Enabled: true
Description: 'Use proc instead of Proc.new.'
Enabled: true
Description: 'Checks the arguments passed to raise/fail.'
Enabled: false
Description: "Don't use begin blocks when they are not needed."
Enabled: true
Description: "Checks for an obsolete RuntimeException argument in raise/fail."
Enabled: true
Description: "Don't use return where it's not required."
Enabled: true
Description: "Don't use self where it's not needed."
Enabled: true
Description: >-
Use %r for regular expressions matching more than
`MaxSlashes` '/' characters.
Use %r only for regular expressions matching more than
`MaxSlashes` '/' character.
Enabled: false
Description: 'Avoid using rescue in its modifier form.'
Enabled: true
Description: >-
Checks for places where self-assignment shorthand should have
been used.
Enabled: true
Description: "Don't use semicolons to terminate expressions."
Enabled: true
Description: 'Checks for proper usage of fail and raise.'
Enabled: false
Description: 'Enforces the names of some block params.'
Enabled: true
Description: 'Avoid single-line methods.'
Enabled: true
Description: >-
Checks that exactly one space is used between a method name
and the first argument for method calls without parentheses.
Enabled: true
Description: 'Use spaces after colons.'
Enabled: true
Description: 'Use spaces after commas.'
Enabled: true
Description: 'Use spaces after if/elsif/unless/while/until/case/when.'
Enabled: true
Description: >-
Never put a space between a method name and the opening
parenthesis in a method definition.
Enabled: true
Description: Tracks redundant space after the ! operator.
Enabled: true
Description: 'Use spaces after semicolons.'
Enabled: true
Description: >-
Checks that the left block brace has or doesn't have space
before it.
Enabled: true
Description: 'No spaces before commas.'
Enabled: true
Description: >-
Checks for missing space between code and a comment on the
same line.
Enabled: true
Description: 'No spaces before semicolons.'
Enabled: true
Description: >-
Checks that block braces have or don't have surrounding space.
For blocks taking parameters, checks that the left brace has
or doesn't have trailing space.
Enabled: true
Description: >-
Checks that the equals signs in parameter default assignments
have or don't have surrounding space depending on
configuration.
Enabled: true
Description: 'Use spaces around operators.'
Enabled: true
Description: 'Put a space before the modifier keyword.'
Enabled: true
Description: 'No spaces after [ or before ].'
Enabled: true
Description: "Use spaces inside hash literal braces - or don't."
Enabled: true
EnforcedStyle: no_space
Description: 'No spaces after ( or before ).'
Enabled: true
Description: 'Avoid Perl-style global variables.'
Enabled: true
Description: 'Checks if uses of quotes match the configured preference.'
Enabled: true
EnforcedStyle: single_quotes
Description: 'No hard tabs.'
Enabled: true
Description: 'Checks trailing blank lines and final newline.'
Enabled: true
EnforcedStyleForMultiline: comma
Description: 'Checks for trailing comma in argument lists.'
Enabled: true
EnforcedStyleForMultiline: comma
Description: 'Checks for trailing comma in array and hash literals.'
Enabled: true
Description: 'Avoid trailing whitespace.'
Enabled: true
Description: 'Prefer attr_* methods to trivial readers/writers.'
Enabled: true
Description: >-
Never use unless with else. Rewrite these with the positive
case first.
Enabled: true
Description: 'Checks for %W when interpolation is not needed.'
Enabled: true
Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
Enabled: true
Description: >-
Don't interpolate global, instance and class variables
directly in strings.
Enabled: true
Description: 'Use the configured style when naming variables.'
Enabled: true
Description: 'Use when x then ... for one-line cases.'
Enabled: true
Description: 'Checks for redundant do after while or until.'
Enabled: true
Description: >-
Favor modifier while/until usage when you have a
single-line body.
Enabled: true
Description: 'Use %w or %W for arrays of words.'
Enabled: true
#################### Metrics ################################
Description: 'Avoid excessive block nesting'
Enabled: true
Description: 'Avoid classes longer than 100 lines of code.'
Enabled: true
Description: >-
A complexity metric that is strongy correlated to the number
of test cases needed to validate a method.
Enabled: true
Description: 'Limit lines to 80 characters.'
Enabled: true
Description: 'Avoid methods longer than 10 lines of code.'
Enabled: true
Description: 'Avoid parameter lists longer than three or four parameters.'
Enabled: true
Description: >-
A complexity metric geared towards measuring complexity for a
human reader.
Enabled: true
#################### Lint ################################
### Warnings
Description: >-
Checks for ambiguous operators in the first argument of a
method invocation without parentheses.
Enabled: true
Description: >-
Checks for ambiguous regexp literals in the first argument of
a method invocation without parenthesis.
Enabled: true
Description: "Don't use assignment in conditions."
Enabled: false
Description: 'Align block ends correctly.'
Enabled: true
Description: >-
Checks for condition placed in a confusing position relative to
the keyword.
Enabled: true
Description: 'Check for debugger calls.'
Enabled: true
Description: 'Align ends corresponding to defs correctly.'
Enabled: true
Description: 'Check for deprecated class method calls.'
Enabled: true
Description: 'Check for odd code arrangement in an else block.'
Enabled: true
Description: 'Checks for empty ensure block.'
Enabled: true
Description: 'Checks for empty string interpolation.'
Enabled: true
Description: 'Align ends correctly.'
Enabled: true
Description: 'END blocks should not be placed inside method definitions.'
Enabled: true
Description: 'Never use return in an ensure block.'
Enabled: true
Description: 'The use of eval represents a serious security risk.'
Enabled: true
Description: "Don't suppress exception."
Enabled: true
Description: >-
Checks for invalid character literals with a non-escaped
whitespace character.
Enabled: true
Description: 'Checks of literals used in conditions.'
Enabled: true
Description: 'Checks for literals used in interpolation.'
Enabled: true
Description: >-
Use Kernel#loop with break rather than begin/end/until or
begin/end/while for post-loop tests.
Enabled: true
Description: >-
Checks for method calls with a space before the opening
parenthesis.
Enabled: true
Description: >-
Use parentheses in the method call to avoid confusion
about precedence.
Enabled: true
Description: 'Avoid rescuing the Exception class.'
Enabled: true
Description: >-
Do not use the same name as outer local variable
for block arguments or block local variables.
Enabled: true
Description: 'Checks for Object#to_s usage in string interpolation.'
Enabled: true
Description: 'Do not use prefix `_` for a variable that is used.'
Enabled: true
Description: 'Checks for unused block arguments.'
Enabled: true
Description: 'Checks for unused method arguments.'
Enabled: true
Description: 'Unreachable code.'
Enabled: true
Description: 'Checks for useless access modifiers.'
Enabled: true
Description: 'Checks for useless assignment to a local variable.'
Enabled: true
Description: 'Checks for comparison of something with itself.'
Enabled: true
Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
Enabled: true
Description: 'Checks for useless setter call to a local variable.'
Enabled: true
Description: 'Possible use of operator/literal/variable in void context.'
Enabled: true
##################### Rails ##################################
Description: 'Enforces consistent use of action filter methods.'
Enabled: false
Description: 'Prefer delegate method for delegations.'
Enabled: true
Description: 'Prefer has_many :through to has_and_belongs_to_many.'
Enabled: false
Description: 'Checks for calls to puts, print, etc.'
Enabled: true
Description: >-
Checks for read_attribute(:attr) and
write_attribute(:attr, val).
Enabled: true
Description: 'Checks the arguments of ActiveRecord scopes.'
Enabled: true
Description: 'Use sexy validations.'
Enabled: true