debian-mirror-gitlab/.rubocop.yml

1062 lines
25 KiB
YAML
Raw Normal View History

2016-06-02 11:05:42 +05:30
AllCops:
TargetRubyVersion: 2.1
# Cop names are not displayed in offense messages by default. Change behavior
# by overriding DisplayCopNames, or by giving the -D/--display-cop-names
# option.
DisplayCopNames: true
# Style guide URLs are not displayed in offense messages by default. Change
# behavior by overriding DisplayStyleGuide, or by giving the
# -S/--display-style-guide option.
DisplayStyleGuide: false
# Exclude some GitLab files
Exclude:
- 'vendor/**/*'
- 'db/**/*'
- 'tmp/**/*'
- 'bin/**/*'
- 'lib/backup/**/*'
- 'lib/ci/backup/**/*'
- 'lib/tasks/**/*'
- 'lib/ci/migrate/**/*'
- 'lib/email_validator.rb'
- 'lib/gitlab/upgrader.rb'
- 'lib/gitlab/seeder.rb'
- 'generator_templates/**/*'
##################### Style ##################################
# Check indentation of private/protected visibility modifiers.
2015-04-26 12:48:37 +05:30
Style/AccessModifierIndentation:
Enabled: true
2016-06-02 11:05:42 +05:30
# Check the naming of accessor methods for get_/set_.
2015-04-26 12:48:37 +05:30
Style/AccessorMethodName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use alias_method instead of alias.
2015-04-26 12:48:37 +05:30
Style/Alias:
2016-06-02 11:05:42 +05:30
EnforcedStyle: prefer_alias_method
2015-04-26 12:48:37 +05:30
Enabled: true
2016-06-02 11:05:42 +05:30
# Align the elements of an array literal if they span more than one line.
2015-04-26 12:48:37 +05:30
Style/AlignArray:
Enabled: true
2016-06-02 11:05:42 +05:30
# Align the elements of a hash literal if they span more than one line.
2015-04-26 12:48:37 +05:30
Style/AlignHash:
Enabled: true
2016-06-02 11:05:42 +05:30
# Align the parameters of a method call if they span more than one line.
2015-04-26 12:48:37 +05:30
Style/AlignParameters:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use &&/|| instead of and/or.
2015-04-26 12:48:37 +05:30
Style/AndOr:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use `Array#join` instead of `Array#*`.
2015-04-26 12:48:37 +05:30
Style/ArrayJoin:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use only ascii symbols in comments.
2015-04-26 12:48:37 +05:30
Style/AsciiComments:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use only ascii symbols in identifiers.
2015-04-26 12:48:37 +05:30
Style/AsciiIdentifiers:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for uses of Module#attr.
2015-04-26 12:48:37 +05:30
Style/Attr:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid the use of BEGIN blocks.
2015-04-26 12:48:37 +05:30
Style/BeginBlock:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks if usage of %() or %Q() matches configuration.
2015-04-26 12:48:37 +05:30
Style/BarePercentLiterals:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use block comments.
2015-04-26 12:48:37 +05:30
Style/BlockComments:
Enabled: false
2016-06-02 11:05:42 +05:30
# Put end statement of multiline block on its own line.
2015-04-26 12:48:37 +05:30
Style/BlockEndNewline:
Enabled: true
2016-06-02 11:05:42 +05:30
# Avoid using {...} for multi-line blocks (multiline chaining is # always
# ugly). Prefer {...} over do...end for single-line blocks.
2015-12-23 02:04:40 +05:30
Style/BlockDelimiters:
2015-04-26 12:48:37 +05:30
Enabled: true
2016-06-02 11:05:42 +05:30
# Enforce braces style around hash parameters.
2015-04-26 12:48:37 +05:30
Style/BracesAroundHashParameters:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid explicit use of the case equality operator(===).
2015-04-26 12:48:37 +05:30
Style/CaseEquality:
Enabled: false
2016-06-02 11:05:42 +05:30
# Indentation of when in a case/when/[else/]end.
2015-04-26 12:48:37 +05:30
Style/CaseIndentation:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for uses of character literals.
2015-04-26 12:48:37 +05:30
Style/CharacterLiteral:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use CamelCase for classes and modules.'
2015-04-26 12:48:37 +05:30
Style/ClassAndModuleCamelCase:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks style of children classes and modules.
2015-04-26 12:48:37 +05:30
Style/ClassAndModuleChildren:
Enabled: false
2016-06-02 11:05:42 +05:30
# Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.
2015-04-26 12:48:37 +05:30
Style/ClassCheck:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use self when defining module/class methods.
2015-04-26 12:48:37 +05:30
Style/ClassMethods:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid the use of class variables.
2015-04-26 12:48:37 +05:30
Style/ClassVars:
Enabled: true
2016-06-02 11:05:42 +05:30
# Do not use :: for method call.
2015-04-26 12:48:37 +05:30
Style/ColonMethodCall:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks formatting of special comments (TODO, FIXME, OPTIMIZE, HACK, REVIEW).
2015-04-26 12:48:37 +05:30
Style/CommentAnnotation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Indentation of comments.
2015-04-26 12:48:37 +05:30
Style/CommentIndentation:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use the return value of `if` and `case` statements for assignment to a
# variable and variable comparison instead of assigning that variable
# inside of each branch.
Style/ConditionalAssignment:
Enabled: false
# Constants should use SCREAMING_SNAKE_CASE.
2015-04-26 12:48:37 +05:30
Style/ConstantName:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use def with parentheses when there are arguments.
2015-04-26 12:48:37 +05:30
Style/DefWithParentheses:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for use of deprecated Hash methods.
2015-04-26 12:48:37 +05:30
Style/DeprecatedHashMethods:
Enabled: false
2016-06-02 11:05:42 +05:30
# Document classes and non-namespace modules.
2015-04-26 12:48:37 +05:30
Style/Documentation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks the position of the dot in multi-line method calls.
2015-04-26 12:48:37 +05:30
Style/DotPosition:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for uses of double negation (!!).
2015-04-26 12:48:37 +05:30
Style/DoubleNegation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer `each_with_object` over `inject` or `reduce`.
2015-04-26 12:48:37 +05:30
Style/EachWithObject:
Enabled: false
2016-06-02 11:05:42 +05:30
# Align elses and elsifs correctly.
2015-04-26 12:48:37 +05:30
Style/ElseAlignment:
Enabled: true
2016-06-02 11:05:42 +05:30
# Avoid empty else-clauses.
2015-04-26 12:48:37 +05:30
Style/EmptyElse:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use empty lines between defs.
2015-04-26 12:48:37 +05:30
Style/EmptyLineBetweenDefs:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't use several empty lines in a row.
2015-04-26 12:48:37 +05:30
Style/EmptyLines:
Enabled: false
2016-06-02 11:05:42 +05:30
# Keep blank lines around access modifiers.
2015-04-26 12:48:37 +05:30
Style/EmptyLinesAroundAccessModifier:
Enabled: false
2016-06-02 11:05:42 +05:30
# Keeps track of empty lines around block bodies.
2015-04-26 12:48:37 +05:30
Style/EmptyLinesAroundBlockBody:
Enabled: false
2016-06-02 11:05:42 +05:30
# Keeps track of empty lines around class bodies.
2015-04-26 12:48:37 +05:30
Style/EmptyLinesAroundClassBody:
Enabled: false
2016-06-02 11:05:42 +05:30
# Keeps track of empty lines around module bodies.
2015-04-26 12:48:37 +05:30
Style/EmptyLinesAroundModuleBody:
Enabled: false
2016-06-02 11:05:42 +05:30
# Keeps track of empty lines around method bodies.
2015-04-26 12:48:37 +05:30
Style/EmptyLinesAroundMethodBody:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer literals to Array.new/Hash.new/String.new.
2015-04-26 12:48:37 +05:30
Style/EmptyLiteral:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid the use of END blocks.
2015-04-26 12:48:37 +05:30
Style/EndBlock:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use Unix-style line endings.
2015-04-26 12:48:37 +05:30
Style/EndOfLine:
Enabled: false
2016-06-02 11:05:42 +05:30
# Favor the use of Fixnum#even? && Fixnum#odd?
2015-04-26 12:48:37 +05:30
Style/EvenOdd:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use unnecessary spacing.
2015-12-23 02:04:40 +05:30
Style/ExtraSpacing:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use snake_case for source file names.
2015-04-26 12:48:37 +05:30
Style/FileName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for flip flops.
2015-04-26 12:48:37 +05:30
Style/FlipFlop:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks use of for or each in multiline loops.
2015-04-26 12:48:37 +05:30
Style/For:
Enabled: false
2016-06-02 11:05:42 +05:30
# Enforce the use of Kernel#sprintf, Kernel#format or String#%.
2015-04-26 12:48:37 +05:30
Style/FormatString:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not introduce global variables.
2015-04-26 12:48:37 +05:30
Style/GlobalVars:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for conditionals that can be replaced with guard clauses.
2015-04-26 12:48:37 +05:30
Style/GuardClause:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer Ruby 1.9 hash syntax `{ a: 1, b: 2 }`
# over 1.8 syntax `{ :a => 1, :b => 2 }`.
2015-04-26 12:48:37 +05:30
Style/HashSyntax:
Enabled: true
2016-06-02 11:05:42 +05:30
# Finds if nodes inside else, which can be converted to elsif.
Style/IfInsideElse:
Enabled: false
# Favor modifier if/unless usage when you have a single-line body.
2015-04-26 12:48:37 +05:30
Style/IfUnlessModifier:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use if x; .... Use the ternary operator instead.
2015-04-26 12:48:37 +05:30
Style/IfWithSemicolon:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks that conditional statements do not have an identical line at the
# end of each branch, which can validly be moved out of the conditional.
Style/IdenticalConditionalBranches:
Enabled: false
# Checks the indentation of the first line of the right-hand-side of a
# multi-line assignment.
Style/IndentAssignment:
Enabled: false
# Keep indentation straight.
2015-04-26 12:48:37 +05:30
Style/IndentationConsistency:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use 2 spaces for indentation.
2015-04-26 12:48:37 +05:30
Style/IndentationWidth:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks the indentation of the first element in an array literal.
2015-04-26 12:48:37 +05:30
Style/IndentArray:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks the indentation of the first key in a hash literal.
2015-04-26 12:48:37 +05:30
Style/IndentHash:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use Kernel#loop for infinite loops.
2015-04-26 12:48:37 +05:30
Style/InfiniteLoop:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use the new lambda literal syntax for single-line blocks.
2015-04-26 12:48:37 +05:30
Style/Lambda:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use lambda.call(...) instead of lambda.(...).
2015-04-26 12:48:37 +05:30
Style/LambdaCall:
Enabled: false
2016-06-02 11:05:42 +05:30
# Comments should start with a space.
2015-04-26 12:48:37 +05:30
Style/LeadingCommentSpace:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use \ instead of + or << to concatenate two string literals at line end.
2015-04-26 12:48:37 +05:30
Style/LineEndConcatenation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use parentheses for method calls with no arguments.
2015-04-26 12:48:37 +05:30
Style/MethodCallParentheses:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks if the method definitions have or don't have parentheses.
2015-04-26 12:48:37 +05:30
Style/MethodDefParentheses:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use the configured style when naming methods.
2015-04-26 12:48:37 +05:30
Style/MethodName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for usage of `extend self` in modules.
2015-04-26 12:48:37 +05:30
Style/ModuleFunction:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid multi-line chains of blocks.
2015-04-26 12:48:37 +05:30
Style/MultilineBlockChain:
Enabled: false
2016-06-02 11:05:42 +05:30
# Ensures newlines after multiline block do statements.
2015-04-26 12:48:37 +05:30
Style/MultilineBlockLayout:
Enabled: true
2016-06-02 11:05:42 +05:30
# Do not use then for multi-line if/unless.
2015-04-26 12:48:37 +05:30
Style/MultilineIfThen:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks indentation of method calls with the dot operator that span more than
# one line.
Style/MultilineMethodCallIndentation:
Enabled: false
# Checks indentation of binary operations that span more than one line.
2015-04-26 12:48:37 +05:30
Style/MultilineOperationIndentation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid multi-line `? :` (the ternary operator), use if/unless instead.
2015-04-26 12:48:37 +05:30
Style/MultilineTernaryOperator:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not assign mutable objects to constants.
Style/MutableConstant:
Enabled: false
# Favor unless over if for negative conditions (or control flow or).
2015-04-26 12:48:37 +05:30
Style/NegatedIf:
Enabled: false
2016-06-02 11:05:42 +05:30
# Favor until over while for negative conditions.
2015-04-26 12:48:37 +05:30
Style/NegatedWhile:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid using nested modifiers.
Style/NestedModifier:
Enabled: false
# Parenthesize method calls which are nested inside the argument list of
# another parenthesized method call.
Style/NestedParenthesizedCalls:
Enabled: false
# Use one expression per branch in a ternary operator.
2015-04-26 12:48:37 +05:30
Style/NestedTernaryOperator:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use `next` to skip iteration instead of a condition at the end.
2015-04-26 12:48:37 +05:30
Style/Next:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer x.nil? to x == nil.
2015-04-26 12:48:37 +05:30
Style/NilComparison:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for redundant nil checks.
2015-04-26 12:48:37 +05:30
Style/NonNilCheck:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use ! instead of not.
2015-04-26 12:48:37 +05:30
Style/Not:
Enabled: true
2016-06-02 11:05:42 +05:30
# Add underscores to large numeric literals to improve their readability.
2015-04-26 12:48:37 +05:30
Style/NumericLiterals:
Enabled: false
2016-06-02 11:05:42 +05:30
# Favor the ternary operator(?:) over if/then/else/end constructs.
2015-04-26 12:48:37 +05:30
Style/OneLineConditional:
Enabled: true
2016-06-02 11:05:42 +05:30
# When defining binary operators, name the argument other.
2015-04-26 12:48:37 +05:30
Style/OpMethod:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for simple usages of parallel assignment. It will only warn when
# the number of variables matches on both sides of the assignment.
2015-12-23 02:04:40 +05:30
Style/ParallelAssignment:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't use parentheses around the condition of an if/unless/while.
2015-04-26 12:48:37 +05:30
Style/ParenthesesAroundCondition:
Enabled: true
2016-06-02 11:05:42 +05:30
# Use `%`-literal delimiters consistently.
2015-04-26 12:48:37 +05:30
Style/PercentLiteralDelimiters:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks if uses of %Q/%q match the configured preference.
2015-04-26 12:48:37 +05:30
Style/PercentQLiterals:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid Perl-style regex back references.
2015-04-26 12:48:37 +05:30
Style/PerlBackrefs:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check the names of predicate methods.
2015-04-26 12:48:37 +05:30
Style/PredicateName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use proc instead of Proc.new.
2015-04-26 12:48:37 +05:30
Style/Proc:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks the arguments passed to raise/fail.
2015-04-26 12:48:37 +05:30
Style/RaiseArgs:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't use begin blocks when they are not needed.
2015-04-26 12:48:37 +05:30
Style/RedundantBegin:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for an obsolete RuntimeException argument in raise/fail.
2015-04-26 12:48:37 +05:30
Style/RedundantException:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks usages of Object#freeze on immutable objects.
Style/RedundantFreeze:
Enabled: false
# TODO: Enable RedundantParentheses Cop.
# Checks for parentheses that seem not to serve any purpose.
Style/RedundantParentheses:
Enabled: false
# Don't use return where it's not required.
2015-04-26 12:48:37 +05:30
Style/RedundantReturn:
Enabled: true
2016-06-02 11:05:42 +05:30
# Don't use self where it's not needed.
2015-04-26 12:48:37 +05:30
Style/RedundantSelf:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use %r for regular expressions matching more than `MaxSlashes` '/'
# characters. Use %r only for regular expressions matching more
# than `MaxSlashes` '/' character.
2015-04-26 12:48:37 +05:30
Style/RegexpLiteral:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid using rescue in its modifier form.
2015-04-26 12:48:37 +05:30
Style/RescueModifier:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for places where self-assignment shorthand should have been used.
2015-04-26 12:48:37 +05:30
Style/SelfAssignment:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't use semicolons to terminate expressions.
2015-04-26 12:48:37 +05:30
Style/Semicolon:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for proper usage of fail and raise.
2015-04-26 12:48:37 +05:30
Style/SignalException:
Enabled: false
2016-06-02 11:05:42 +05:30
# Enforces the names of some block params.
2015-04-26 12:48:37 +05:30
Style/SingleLineBlockParams:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid single-line methods.
2015-04-26 12:48:37 +05:30
Style/SingleLineMethods:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use spaces after colons.
2015-04-26 12:48:37 +05:30
Style/SpaceAfterColon:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use spaces after commas.
2015-04-26 12:48:37 +05:30
Style/SpaceAfterComma:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not put a space between a method name and the opening parenthesis in a
# method definition.
2015-04-26 12:48:37 +05:30
Style/SpaceAfterMethodName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Tracks redundant space after the ! operator.
2015-04-26 12:48:37 +05:30
Style/SpaceAfterNot:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use spaces after semicolons.
2015-04-26 12:48:37 +05:30
Style/SpaceAfterSemicolon:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks that the equals signs in parameter default assignments have or don't
# have surrounding space depending on configuration.
Style/SpaceAroundEqualsInParameterDefault:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# TODO: Enable SpaceAroundKeyword Cop.
# Use a space around keywords if appropriate.
Style/SpaceAroundKeyword:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Use a single space around operators.
Style/SpaceAroundOperators:
Enabled: true
# Checks that the left block brace has or doesn't have space before it.
Style/SpaceBeforeBlockBraces:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# No spaces before commas.
Style/SpaceBeforeComma:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for missing space between code and a comment on the same line.
Style/SpaceBeforeComment:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks that exactly one space is used between a method name and the first
# argument for method calls without parentheses.
Style/SpaceBeforeFirstArg:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# No spaces before semicolons.
Style/SpaceBeforeSemicolon:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# 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.
Style/SpaceInsideBlockBraces:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# No spaces after [ or before ].
2015-04-26 12:48:37 +05:30
Style/SpaceInsideBrackets:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use spaces inside hash literal braces - or don't.
2015-04-26 12:48:37 +05:30
Style/SpaceInsideHashLiteralBraces:
Enabled: true
2016-06-02 11:05:42 +05:30
# No spaces after ( or before ).
2015-04-26 12:48:37 +05:30
Style/SpaceInsideParens:
Enabled: false
2016-06-02 11:05:42 +05:30
# No spaces inside range literals.
2015-04-26 12:48:37 +05:30
Style/SpaceInsideRangeLiteral:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for padding/surrounding spaces inside string interpolation.
Style/SpaceInsideStringInterpolation:
Enabled: false
# Avoid Perl-style global variables.
2015-04-26 12:48:37 +05:30
Style/SpecialGlobalVars:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for the usage of parentheses around stabby lambda arguments.
Style/StabbyLambdaParentheses:
Enabled: false
# Checks if uses of quotes match the configured preference.
2015-04-26 12:48:37 +05:30
Style/StringLiterals:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks if uses of quotes inside expressions in interpolated strings match the
# configured preference.
2015-04-26 12:48:37 +05:30
Style/StringLiteralsInInterpolation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks if configured preferred methods are used over non-preferred.
Style/StringMethods:
Enabled: false
# Use %i or %I for arrays of symbols.
Style/SymbolArray:
Enabled: false
# Use symbols as procs instead of blocks when possible.
2015-04-26 12:48:37 +05:30
Style/SymbolProc:
Enabled: false
2016-06-02 11:05:42 +05:30
# No hard tabs.
2015-04-26 12:48:37 +05:30
Style/Tab:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks trailing blank lines and final newline.
2015-04-26 12:48:37 +05:30
Style/TrailingBlankLines:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for trailing comma in array and hash literals.
Style/TrailingCommaInLiteral:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for trailing comma in argument lists.
Style/TrailingCommaInArguments:
Enabled: false
# Avoid trailing whitespace.
2015-04-26 12:48:37 +05:30
Style/TrailingWhitespace:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for the usage of unneeded trailing underscores at the end of
# parallel variable assignment.
2015-12-23 02:04:40 +05:30
Style/TrailingUnderscoreVariable:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer attr_* methods to trivial readers/writers.
2015-04-26 12:48:37 +05:30
Style/TrivialAccessors:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use unless with else. Rewrite these with the positive case first.
2015-04-26 12:48:37 +05:30
Style/UnlessElse:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for %W when interpolation is not needed.
2015-04-26 12:48:37 +05:30
Style/UnneededCapitalW:
Enabled: false
2016-06-02 11:05:42 +05:30
# TODO: Enable UnneededInterpolation Cop.
# Checks for strings that are just an interpolated expression.
Style/UnneededInterpolation:
Enabled: false
# Checks for %q/%Q when single quotes or double quotes would do.
2015-04-26 12:48:37 +05:30
Style/UnneededPercentQ:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't interpolate global, instance and class variables directly in strings.
2015-04-26 12:48:37 +05:30
Style/VariableInterpolation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use the configured style when naming variables.
2015-04-26 12:48:37 +05:30
Style/VariableName:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use when x then ... for one-line cases.
2015-04-26 12:48:37 +05:30
Style/WhenThen:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for redundant do after while or until.
2015-04-26 12:48:37 +05:30
Style/WhileUntilDo:
Enabled: false
2016-06-02 11:05:42 +05:30
# Favor modifier while/until usage when you have a single-line body.
2015-04-26 12:48:37 +05:30
Style/WhileUntilModifier:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use %w or %W for arrays of words.
2015-04-26 12:48:37 +05:30
Style/WordArray:
Enabled: false
2016-06-02 11:05:42 +05:30
# TODO: Enable ZeroLengthPredicate Cop.
# Use #empty? when testing for objects of length 0.
Style/ZeroLengthPredicate:
Enabled: false
2015-12-23 02:04:40 +05:30
2016-06-02 11:05:42 +05:30
#################### Metrics ################################
2015-12-23 02:04:40 +05:30
2016-06-02 11:05:42 +05:30
# A calculated magnitude based on number of assignments,
# branches, and conditions.
Metrics/AbcSize:
2015-12-23 02:04:40 +05:30
Enabled: true
2016-06-02 11:05:42 +05:30
Max: 60
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
# Avoid excessive block nesting.
2015-04-26 12:48:37 +05:30
Metrics/BlockNesting:
2015-12-23 02:04:40 +05:30
Enabled: true
Max: 4
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
# Avoid classes longer than 100 lines of code.
2015-04-26 12:48:37 +05:30
Metrics/ClassLength:
Enabled: false
2016-06-02 11:05:42 +05:30
# A complexity metric that is strongly correlated to the number
# of test cases needed to validate a method.
Metrics/CyclomaticComplexity:
Enabled: true
Max: 17
# Limit lines to 80 characters.
2015-04-26 12:48:37 +05:30
Metrics/LineLength:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid methods longer than 10 lines of code.
2015-04-26 12:48:37 +05:30
Metrics/MethodLength:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid modules longer than 100 lines of code.
2015-12-23 02:04:40 +05:30
Metrics/ModuleLength:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid parameter lists longer than three or four parameters.
Metrics/ParameterLists:
Enabled: true
Max: 8
# A complexity metric geared towards measuring complexity for a human reader.
Metrics/PerceivedComplexity:
Enabled: true
Max: 18
2015-04-26 12:48:37 +05:30
#################### Lint ################################
2016-06-02 11:05:42 +05:30
# Checks for ambiguous operators in the first argument of a method invocation
# without parentheses.
2015-04-26 12:48:37 +05:30
Lint/AmbiguousOperator:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for ambiguous regexp literals in the first argument of a method
# invocation without parentheses.
2015-04-26 12:48:37 +05:30
Lint/AmbiguousRegexpLiteral:
Enabled: false
2016-06-02 11:05:42 +05:30
# Don't use assignment in conditions.
2015-04-26 12:48:37 +05:30
Lint/AssignmentInCondition:
Enabled: false
2016-06-02 11:05:42 +05:30
# Align block ends correctly.
2015-04-26 12:48:37 +05:30
Lint/BlockAlignment:
Enabled: false
2016-06-02 11:05:42 +05:30
# Default values in optional keyword arguments and optional ordinal arguments
# should not refer back to the name of the argument.
Lint/CircularArgumentReference:
Enabled: false
# Checks for condition placed in a confusing position relative to the keyword.
2015-04-26 12:48:37 +05:30
Lint/ConditionPosition:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for debugger calls.
2015-04-26 12:48:37 +05:30
Lint/Debugger:
Enabled: false
2016-06-02 11:05:42 +05:30
# Align ends corresponding to defs correctly.
2015-04-26 12:48:37 +05:30
Lint/DefEndAlignment:
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for deprecated class method calls.
2015-04-26 12:48:37 +05:30
Lint/DeprecatedClassMethods:
2016-06-02 11:05:42 +05:30
Enabled: true
# Check for duplicate method definitions.
Lint/DuplicateMethods:
Enabled: false
# Check for duplicate keys in hash literals.
Lint/DuplicatedKey:
Enabled: false
# Check for immutable argument given to each_with_object.
Lint/EachWithObjectArgument:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Check for odd code arrangement in an else block.
2015-04-26 12:48:37 +05:30
Lint/ElseLayout:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for empty ensure block.
2015-04-26 12:48:37 +05:30
Lint/EmptyEnsure:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for empty string interpolation.
2015-04-26 12:48:37 +05:30
Lint/EmptyInterpolation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Align ends correctly.
2015-04-26 12:48:37 +05:30
Lint/EndAlignment:
Enabled: false
2016-06-02 11:05:42 +05:30
# END blocks should not be placed inside method definitions.
2015-04-26 12:48:37 +05:30
Lint/EndInMethod:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use return in an ensure block.
2015-04-26 12:48:37 +05:30
Lint/EnsureReturn:
Enabled: false
2016-06-02 11:05:42 +05:30
# The use of eval represents a serious security risk.
2015-04-26 12:48:37 +05:30
Lint/Eval:
Enabled: false
2016-06-02 11:05:42 +05:30
# Catches floating-point literals too large or small for Ruby to represent.
Lint/FloatOutOfRange:
Enabled: false
# The number of parameters to format/sprint must match the fields.
Lint/FormatParameterMismatch:
Enabled: false
# Don't suppress exception.
2015-04-26 12:48:37 +05:30
Lint/HandleExceptions:
Enabled: false
2016-06-02 11:05:42 +05:30
# TODO: Enable ImplicitStringConcatenation Cop.
# Checks for adjacent string literals on the same line, which could better be
# represented as a single string literal.
Lint/ImplicitStringConcatenation:
Enabled: false
# TODO: Enable IneffectiveAccessModifier Cop.
# Checks for attempts to use `private` or `protected` to set the visibility
# of a class method, which does not work.
Lint/IneffectiveAccessModifier:
Enabled: false
# Checks for invalid character literals with a non-escaped whitespace
# character.
2015-04-26 12:48:37 +05:30
Lint/InvalidCharacterLiteral:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks of literals used in conditions.
2015-04-26 12:48:37 +05:30
Lint/LiteralInCondition:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for literals used in interpolation.
2015-04-26 12:48:37 +05:30
Lint/LiteralInInterpolation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use Kernel#loop with break rather than begin/end/until or begin/end/while
# for post-loop tests.
2015-04-26 12:48:37 +05:30
Lint/Loop:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use nested method definitions.
Lint/NestedMethodDefinition:
Enabled: false
# Do not omit the accumulator when calling `next` in a `reduce`/`inject` block.
Lint/NextWithoutAccumulator:
Enabled: false
# Checks for method calls with a space before the opening parenthesis.
2015-04-26 12:48:37 +05:30
Lint/ParenthesesAsGroupedExpression:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for `rand(1)` calls. Such calls always return `0` and most likely
# a mistake.
Lint/RandOne:
Enabled: false
# Use parentheses in the method call to avoid confusion about precedence.
2015-04-26 12:48:37 +05:30
Lint/RequireParentheses:
Enabled: false
2016-06-02 11:05:42 +05:30
# Avoid rescuing the Exception class.
2015-04-26 12:48:37 +05:30
Lint/RescueException:
2015-12-23 02:04:40 +05:30
Enabled: true
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
# Do not use the same name as outer local variable for block arguments
# or block local variables.
2015-04-26 12:48:37 +05:30
Lint/ShadowingOuterLocalVariable:
Enabled: false
2016-06-02 11:05:42 +05:30
# 'Checks for Object#to_s usage in string interpolation.
2015-04-26 12:48:37 +05:30
Lint/StringConversionInInterpolation:
Enabled: false
2016-06-02 11:05:42 +05:30
# Do not use prefix `_` for a variable that is used.
2015-04-26 12:48:37 +05:30
Lint/UnderscorePrefixedVariableName:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for rubocop:disable comments that can be removed.
# Note: this cop is not disabled when disabling all cops.
# It must be explicitly disabled.
Lint/UnneededDisable:
Enabled: false
# Checks for unused block arguments.
2015-04-26 12:48:37 +05:30
Lint/UnusedBlockArgument:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for unused method arguments.
2015-04-26 12:48:37 +05:30
Lint/UnusedMethodArgument:
Enabled: false
2016-06-02 11:05:42 +05:30
# Unreachable code.
2015-04-26 12:48:37 +05:30
Lint/UnreachableCode:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for useless access modifiers.
2015-04-26 12:48:37 +05:30
Lint/UselessAccessModifier:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for useless assignment to a local variable.
2015-04-26 12:48:37 +05:30
Lint/UselessAssignment:
2015-10-24 18:46:33 +05:30
Enabled: true
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
# Checks for comparison of something with itself.
2015-04-26 12:48:37 +05:30
Lint/UselessComparison:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for useless `else` in `begin..end` without `rescue`.
2015-04-26 12:48:37 +05:30
Lint/UselessElseWithoutRescue:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks for useless setter call to a local variable.
2015-04-26 12:48:37 +05:30
Lint/UselessSetterCall:
Enabled: false
2016-06-02 11:05:42 +05:30
# Possible use of operator/literal/variable in void context.
2015-04-26 12:48:37 +05:30
Lint/Void:
Enabled: false
2016-06-02 11:05:42 +05:30
##################### Performance ############################
# Use `casecmp` rather than `downcase ==`.
Performance/Casecmp:
Enabled: true
# TODO: Enable DoubleStartEndWith Cop.
# Use `str.{start,end}_with?(x, ..., y, ...)` instead of
# `str.{start,end}_with?(x, ...) || str.{start,end}_with?(y, ...)`.
Performance/DoubleStartEndWith:
Enabled: false
# TODO: Enable EndWith Cop.
# Use `end_with?` instead of a regex match anchored to the end of a string.
Performance/EndWith:
Enabled: false
# Use `strip` instead of `lstrip.rstrip`.
Performance/LstripRstrip:
Enabled: true
# TODO: Enable RangeInclude Cop.
# Use `Range#cover?` instead of `Range#include?`.
Performance/RangeInclude:
Enabled: false
# TODO: Enable RedundantBlockCall Cop.
# Use `yield` instead of `block.call`.
Performance/RedundantBlockCall:
Enabled: false
# TODO: Enable RedundantMatch Cop.
# Use `=~` instead of `String#match` or `Regexp#match` in a context where the
# returned `MatchData` is not needed.
Performance/RedundantMatch:
Enabled: false
# TODO: Enable RedundantMerge Cop.
# Use `Hash#[]=`, rather than `Hash#merge!` with a single key-value pair.
Performance/RedundantMerge:
# Max number of key-value pairs to consider an offense
MaxKeyValuePairs: 2
Enabled: false
# TODO: Enable RedundantSortBy Cop.
# Use `sort` instead of `sort_by { |x| x }`.
Performance/RedundantSortBy:
Enabled: false
# TODO: Enable StartWith Cop.
# Use `start_with?` instead of a regex match anchored to the beginning of a
# string.
Performance/StartWith:
Enabled: false
# Use `tr` instead of `gsub` when you are replacing the same number of
# characters. Use `delete` instead of `gsub` when you are deleting
# characters.
Performance/StringReplacement:
Enabled: true
# TODO: Enable TimesMap Cop.
# Checks for `.times.map` calls.
Performance/TimesMap:
Enabled: false
2015-04-26 12:48:37 +05:30
##################### Rails ##################################
2016-06-02 11:05:42 +05:30
# Enables Rails cops.
Rails:
Enabled: true
# Enforces consistent use of action filter methods.
2015-04-26 12:48:37 +05:30
Rails/ActionFilter:
2015-09-11 14:41:01 +05:30
Enabled: true
2016-06-02 11:05:42 +05:30
EnforcedStyle: action
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
# Checks the correct usage of date aware methods, such as `Date.today`,
# `Date.current`, etc.
2015-12-23 02:04:40 +05:30
Rails/Date:
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer delegate method for delegations.
Rails/Delegate:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer `find_by` over `where.first`.
Rails/FindBy:
Enabled: false
# Prefer `all.find_each` over `all.find`.
Rails/FindEach:
2015-04-26 12:48:37 +05:30
Enabled: false
2016-06-02 11:05:42 +05:30
# Prefer has_many :through to has_and_belongs_to_many.
2015-04-26 12:48:37 +05:30
Rails/HasAndBelongsToMany:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for calls to puts, print, etc.
2015-04-26 12:48:37 +05:30
Rails/Output:
Enabled: true
2016-06-02 11:05:42 +05:30
# Checks for incorrect grammar when using methods like `3.day.ago`.
Rails/PluralizationGrammar:
Enabled: false
# Checks for `read_attribute(:attr)` and `write_attribute(:attr, val)`.
2015-04-26 12:48:37 +05:30
Rails/ReadWriteAttribute:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks the arguments of ActiveRecord scopes.
2015-04-26 12:48:37 +05:30
Rails/ScopeArgs:
Enabled: false
2016-06-02 11:05:42 +05:30
# Checks the correct usage of time zone aware methods.
# http://danilenko.org/2012/7/6/rails_timezones
2015-12-23 02:04:40 +05:30
Rails/TimeZone:
Enabled: false
2016-06-02 11:05:42 +05:30
# Use validates :attribute, hash of validations.
2015-04-26 12:48:37 +05:30
Rails/Validation:
Enabled: false