Skip to content
.rubocop.yml 24.9 KiB
Newer Older
require:
  - rubocop-rspec
  - ./rubocop/rubocop
Robert Speicher's avatar
Robert Speicher committed

inherit_from: .rubocop_todo.yml

AllCops:
  TargetRubyVersion: 2.3
Z.J. van de Weg's avatar
Z.J. van de Weg committed
  # Cop names are not d§splayed 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/**/*'
    - 'node_modules/**/*'
    - 'db/*'
    - 'db/fixtures/**/*'
    - 'tmp/**/*'
    - 'bin/**/*'
    - 'generator_templates/**/*'
Douwe Maan's avatar
Douwe Maan committed
# Gems in consecutive lines should be alphabetically sorted
Douwe Maan's avatar
Douwe Maan committed
Bundler/OrderedGems:
  Enabled: false

# Style #######################################################################

# Check indentation of private/protected visibility modifiers.
Style/AccessModifierIndentation:
# Check the naming of accessor methods for get_/set_.
Style/AccessorMethodName:
  Enabled: false

# Use alias_method instead of alias.
  EnforcedStyle: prefer_alias_method
  Enabled: true
# Align the elements of an array literal if they span more than one line.
  Enabled: true
# Align the elements of a hash literal if they span more than one line.
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# Here we check if the parameters on a multi-line method call or
# definition are aligned.
Douwe Maan's avatar
Douwe Maan committed
Style/AlignParameters:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# Whether `and` and `or` are banned only in conditionals (conditionals)
# or completely (always).
Style/AndOr:
  Enabled: true

# Use `Array#join` instead of `Array#*`.
  Enabled: true
# Use only ascii symbols in comments.
  Enabled: true
# Use only ascii symbols in identifiers.
  Enabled: true
# Checks for uses of Module#attr.
  Enabled: true
# Avoid the use of BEGIN blocks.
  Enabled: true
# Do not use block comments.
  Enabled: true
# Avoid using {...} for multi-line blocks (multiline chaining is # always
# ugly). Prefer {...} over do...end for single-line blocks.
Style/BlockDelimiters:
Douwe Maan's avatar
Douwe Maan committed
# Put end statement of multiline block on its own line.
Style/BlockEndNewline:
  Enabled: true

Douwe Maan's avatar
Douwe Maan committed
 # This cop checks for braces around the last parameter in a method call
# if the last parameter is a hash.
Douwe Maan's avatar
Douwe Maan committed
Style/BracesAroundHashParameters:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for uses of the case equality operator(===).
Douwe Maan's avatar
Douwe Maan committed
Style/CaseEquality:
  Enabled: false

# Indentation of when in a case/when/[else/]end.
# Checks for uses of character literals.
  Enabled: true
# Use CamelCase for classes and modules.'
  Enabled: true
# Checks style of children classes and modules.
Style/ClassAndModuleChildren:
  Enabled: false

# Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.
Douwe Maan's avatar
Douwe Maan committed
  Enabled: true
# Use self when defining module/class methods.
  Enabled: true
# Avoid the use of class variables.
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for methods invoked via the :: operator instead
# of the . operator (like FileUtils::rmdir instead of FileUtils.rmdir).
Douwe Maan's avatar
Douwe Maan committed
Style/ColonMethodCall:
  Enabled: true

Douwe Maan's avatar
Douwe Maan committed
# This cop checks that comment annotation keywords are written according
# to guidelines.
Douwe Maan's avatar
Douwe Maan committed
Style/CommentAnnotation:
  Enabled: false

# Indentation of comments.
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# Check for `if` and `case` statements where each branch is used for
# assignment to the same variable when using the return of the
# condition can be used instead.
Douwe Maan's avatar
Douwe Maan committed
Style/ConditionalAssignment:
  Enabled: true

# Constants should use SCREAMING_SNAKE_CASE.
# Use def with parentheses when there are arguments.
# Document classes and non-namespace modules.
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for uses of double negation (!!) to convert something
# to a boolean value. As this is both cryptic and usually redundant, it
# should be avoided.
Douwe Maan's avatar
Douwe Maan committed
Style/DoubleNegation:
  Enabled: false

# Align elses and elsifs correctly.
# Use empty lines between defs.
  Enabled: true
# Don't use several empty lines in a row.
# Keep blank lines around access modifiers.
Style/EmptyLinesAroundAccessModifier:
# Keeps track of empty lines around block bodies.
# Keeps track of empty lines around class bodies.
# Keeps track of empty lines around method bodies.
Style/EmptyLinesAroundMethodBody:
Douwe Maan's avatar
Douwe Maan committed
# Keeps track of empty lines around module bodies.
Style/EmptyLinesAroundModuleBody:
  Enabled: true

# Avoid the use of END blocks.
  Enabled: true
# Use Unix-style line endings.
# Favor the use of Fixnum#even? && Fixnum#odd?
  Enabled: true
# Use snake_case for source file names.
  Enabled: true

# Checks for a line break before the first parameter in a multi-line method
# parameter definition.
Style/FirstMethodParameterLineBreak:
  Enabled: true
# Checks for flip flops.
  Enabled: true
# Checks use of for or each in multiline loops.
  Enabled: true
Z.J. van de Weg's avatar
Z.J. van de Weg committed
# Checks if there is a magic comment to enforce string literals
Style/FrozenStringLiteralComment:
  Enabled: false
# Do not introduce global variables.
  Enabled: true
  Exclude:
    - 'lib/backup/**/*'
    - 'lib/tasks/**/*'
# Prefer Ruby 1.9 hash syntax `{ a: 1, b: 2 }`
# over 1.8 syntax `{ :a => 1, :b => 2 }`.
  Enabled: true
# 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:
Douwe Maan's avatar
Douwe Maan committed
# Do not use if x; .... Use the ternary operator instead.
Style/IfWithSemicolon:
  Enabled: true

# Checks the indentation of the first line of the right-hand-side of a
# multi-line assignment.
Style/IndentAssignment:

# Keep indentation straight.
  Enabled: true
# Use 2 spaces for indentation.
  Enabled: true
# Use Kernel#loop for infinite loops.
  Enabled: true
# Use lambda.call(...) instead of lambda.(...).
  Enabled: true
# Comments should start with a space.
  Enabled: true
# Checks if the method definitions have or don't have parentheses.
# Use the configured style when naming methods.
  Enabled: true
# Checks for usage of `extend self` in modules.
Style/ModuleFunction:
  Enabled: false

# Checks that the closing brace in an array literal is either on the same line
# as the last array element, or a new line.
Style/MultilineArrayBraceLayout:
  Enabled: true
  EnforcedStyle: symmetrical

# Avoid multi-line chains of blocks.
# Ensures newlines after multiline block do statements.
  Enabled: true
# Checks that the closing brace in a hash literal is either on the same line as
# the last hash element, or a new line.
Style/MultilineHashBraceLayout:
  Enabled: true
  EnforcedStyle: symmetrical

# Do not use then for multi-line if/unless.
# Checks that the closing brace in a method call is either on the same line as
# the last method argument, or a new line.
Style/MultilineMethodCallBraceLayout:
  Enabled: false
  EnforcedStyle: symmetrical

# Checks indentation of method calls with the dot operator that span more than
# one line.
Style/MultilineMethodCallIndentation:
  Enabled: false

# Checks that the closing brace in a method definition is symmetrical with
# respect to the opening brace and the method parameters.
Style/MultilineMethodDefinitionBraceLayout:
  Enabled: false

# Checks indentation of binary operations that span more than one line.
Style/MultilineOperationIndentation:
  Enabled: true
  EnforcedStyle: indented
# Avoid multi-line `? :` (the ternary operator), use if/unless instead.
Style/MultilineTernaryOperator:
  Enabled: true

Douwe Maan's avatar
Douwe Maan committed
# This cop checks whether some constant value isn't a
# mutable literal (e.g. array or hash).
Douwe Maan's avatar
Douwe Maan committed
Style/MutableConstant:
  Enabled: true
  Exclude:
    - 'db/migrate/**/*'
    - 'db/post_migrate/**/*'
# Favor unless over if for negative conditions (or control flow or).
  Enabled: true
# Avoid using nested modifiers.
Style/NestedModifier:
  Enabled: true

# Use one expression per branch in a ternary operator.
  Enabled: true
# Prefer x.nil? to x == nil.
  Enabled: true
# Checks for redundant nil checks.
  Enabled: true
# Use ! instead of not.
  Enabled: true
# Add underscores to large numeric literals to improve their readability.
# Favor the ternary operator(?:) over if/then/else/end constructs.
  Enabled: true
# When defining binary operators, name the argument other.
  Enabled: true
# Don't use parentheses around the condition of an if/unless/while.
Style/ParenthesesAroundCondition:
  Enabled: true
# Checks for an obsolete RuntimeException argument in raise/fail.
Style/RedundantException:
  Enabled: true

# Checks for parentheses that seem not to serve any purpose.
Style/RedundantParentheses:

# Don't use semicolons to terminate expressions.
# Checks for proper usage of fail and raise.
  EnforcedStyle: only_raise
  Enabled: true
# Use spaces after colons.
# Use spaces after commas.
# Do not put a space between a method name and the opening parenthesis in a
# method definition.
# Tracks redundant space after the ! operator.
  Enabled: true
# Use spaces after semicolons.
  Enabled: true
# Use space around equals in parameter default
Style/SpaceAroundEqualsInParameterDefault:
  Enabled: true

# Use a space around keywords if appropriate.
Style/SpaceAroundKeyword:
# Use a single space around operators.
Style/SpaceAroundOperators:
  Enabled: true
# No spaces before commas.
Style/SpaceBeforeComma:
# Checks for missing space between code and a comment on the same line.
Style/SpaceBeforeComment:
# No spaces before semicolons.
Style/SpaceBeforeSemicolon:
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# Checks for spaces inside square brackets.
Style/SpaceInsideBrackets:
  Enabled: true

# Use spaces inside hash literal braces - or don't.
Style/SpaceInsideHashLiteralBraces:
# No spaces inside range literals.
  Enabled: true
# Checks for padding/surrounding spaces inside string interpolation.
Style/SpaceInsideStringInterpolation:
  EnforcedStyle: no_space
  Enabled: true

# Check for the usage of parentheses around stabby lambda arguments.
Style/StabbyLambdaParentheses:
  EnforcedStyle: require_parentheses
  Enabled: true

# Checks if uses of quotes match the configured preference.
# Checks if configured preferred methods are used over non-preferred.
Style/StringMethods:
  PreferredMethods:
    intern: to_sym
  Enabled: true

# No hard tabs.
Dmitriy Zaporozhets's avatar
Dmitriy Zaporozhets committed
  Enabled: true
# Checks trailing blank lines and final newline.
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for trailing comma in array and hash literals.
Style/TrailingCommaInLiteral:
  Enabled: false

# Checks for %W when interpolation is not needed.
# Checks for %q/%Q when single quotes or double quotes would do.
# Don't interpolate global, instance and class variables directly in strings.
  Enabled: true
# Use the configured style when naming variables.
  EnforcedStyle: snake_case
  Enabled: true
# Use the configured style when numbering variables.
Style/VariableNumber:
  Enabled: false

# Use when x then ... for one-line cases.
  Enabled: true
# Checks for redundant do after while or until.
# Favor modifier while/until usage when you have a single-line body.
  Enabled: true
# Use %w or %W for arrays of words.
Douwe Maan's avatar
Douwe Maan committed
  Enabled: true
# Metrics #####################################################################
# A calculated magnitude based on number of assignments,
# branches, and conditions.
Grzegorz Bizon's avatar
Grzegorz Bizon committed
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop checks if the length of a block exceeds some maximum value.
Douwe Maan's avatar
Douwe Maan committed
Metrics/BlockLength:
  Enabled: false

# Avoid excessive block nesting.
Grzegorz Bizon's avatar
Grzegorz Bizon committed
  Enabled: true
  Max: 4
# Avoid classes longer than 100 lines of code.
# 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.
# Avoid methods longer than 10 lines of code.
# Avoid modules longer than 100 lines of code.
Metrics/ModuleLength:
  Enabled: false

# 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
# Lint ########################################################################
# Checks for ambiguous operators in the first argument of a method invocation
# without parentheses.
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for ambiguous regexp literals in the first argument of
# a method invocation without parentheses.
Douwe Maan's avatar
Douwe Maan committed
Lint/AmbiguousRegexpLiteral:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for assignments in the conditions of
# if/while/until.
Douwe Maan's avatar
Douwe Maan committed
Lint/AssignmentInCondition:
  Enabled: false

# Align block ends correctly.
  Enabled: true
# Default values in optional keyword arguments and optional ordinal arguments
# should not refer back to the name of the argument.
Lint/CircularArgumentReference:

# Checks for condition placed in a confusing position relative to the keyword.
# Check for debugger calls.
# Align ends corresponding to defs correctly.
# Check for deprecated class method calls.
# Check for immutable argument given to each_with_object.
Lint/EachWithObjectArgument:

# Check for odd code arrangement in an else block.
# Checks for empty ensure block.
# Checks for the presence of `when` branches without a body.
Lint/EmptyWhen:
  Enabled: true

# Align ends correctly.
# END blocks should not be placed inside method definitions.
# Do not use return in an ensure block.
# Catches floating-point literals too large or small for Ruby to represent.
Lint/FloatOutOfRange:

# The number of parameters to format/sprint must match the fields.
Lint/FormatParameterMismatch:
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for *rescue* blocks with no body.
Douwe Maan's avatar
Douwe Maan committed
Lint/HandleExceptions:
  Enabled: false

# Checks for adjacent string literals on the same line, which could better be
# represented as a single string literal.
Lint/ImplicitStringConcatenation:
Douwe Maan's avatar
Douwe Maan committed
# 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.
# Checks of literals used in conditions.
# Checks for literals used in interpolation.
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for uses of *begin...end while/until something*.
Douwe Maan's avatar
Douwe Maan committed
Lint/Loop:
  Enabled: false

# Do not use nested method definitions.
Lint/NestedMethodDefinition:

# Do not omit the accumulator when calling `next` in a `reduce`/`inject` block.
Lint/NextWithoutAccumulator:

# Checks for method calls with a space before the opening parenthesis.
Lint/ParenthesesAsGroupedExpression:
# Checks for `rand(1)` calls. Such calls always return `0` and most likely
# a mistake.
Lint/RandOne:

# Use parentheses in the method call to avoid confusion about precedence.
# Avoid rescuing the Exception class.
  Enabled: true
Connor Shea's avatar
Connor Shea committed
# Checks for the order which exceptions are rescued to avoid rescueing a less specific exception before a more specific exception.
Lint/ShadowedException:
Douwe Maan's avatar
Douwe Maan committed
# This cop looks for use of the same name as outer local variables
# for block arguments or block local variables.
Douwe Maan's avatar
Douwe Maan committed
Lint/ShadowingOuterLocalVariable:
  Enabled: false

# Checks for Object#to_s usage in string interpolation.
Lint/StringConversionInInterpolation:
  Enabled: true

# Do not use prefix `_` for a variable that is used.
Lint/UnderscorePrefixedVariableName:
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for using Fixnum or Bignum constant
Douwe Maan's avatar
Douwe Maan committed
Lint/UnifiedInteger:
  Enabled: true

# 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

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for unneeded usages of splat expansion
Douwe Maan's avatar
Douwe Maan committed
Lint/UnneededSplatExpansion:
  Enabled: false

# Unreachable code.
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for unused block arguments.
Douwe Maan's avatar
Douwe Maan committed
Lint/UnusedBlockArgument:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for unused method arguments.
Lint/UnusedMethodArgument:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# Checks for useless access modifiers.
Lint/UselessAccessModifier:
  Enabled: true

# Checks for useless assignment to a local variable.
# Checks for comparison of something with itself.
# Checks for useless `else` in `begin..end` without `rescue`.
# Checks for useless setter call to a local variable.
# Possible use of operator/literal/variable in void context.
# Performance #################################################################

# Use `casecmp` rather than `downcase ==`.
Performance/Casecmp:
  Enabled: true

# Use `str.{start,end}_with?(x, ..., y, ...)` instead of
# `str.{start,end}_with?(x, ...) || str.{start,end}_with?(y, ...)`.
Performance/DoubleStartEndWith:

# Use `strip` instead of `lstrip.rstrip`.
Performance/LstripRstrip:
Connor Shea's avatar
Connor Shea committed
  Enabled: true

# Use `Range#cover?` instead of `Range#include?`.
Performance/RangeInclude:
Douwe Maan's avatar
Douwe Maan committed
# This cop identifies the use of a `&block` parameter and `block.call`
# where `yield` would do just as well.
Douwe Maan's avatar
Douwe Maan committed
Performance/RedundantBlockCall:
  Enabled: true

Douwe Maan's avatar
Douwe Maan committed
# This cop identifies use of `Regexp#match` or `String#match in a context
# where the integral return value of `=~` would do just as well.
Douwe Maan's avatar
Douwe Maan committed
Performance/RedundantMatch:
  Enabled: true

Douwe Maan's avatar
Douwe Maan committed
# This cop identifies places where `Hash#merge!` can be replaced by
# `Hash#[]=`.
Douwe Maan's avatar
Douwe Maan committed
Performance/RedundantMerge:
  Enabled: true
  MaxKeyValuePairs: 1

# Use `sort` instead of `sort_by { |x| x }`.
Performance/RedundantSortBy:

# Use `start_with?` instead of a regex match anchored to the beginning of a
# string.
Performance/StartWith:
# 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

# Checks for `.times.map` calls.
Performance/TimesMap:
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# Security ####################################################################

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for the use of JSON class methods which have potential
# security issues.
Douwe Maan's avatar
Douwe Maan committed
Security/JSONLoad:
  Enabled: true

# This cop checks for the use of *Kernel#eval*.
Security/Eval:
  Enabled: true

# Rails #######################################################################
# Enables Rails cops.
Rails:
  Enabled: true

# Enforces consistent use of action filter methods.
  Enabled: true
  EnforcedStyle: action
# Checks the correct usage of date aware methods, such as `Date.today`,
# `Date.current`, etc.
Gabriel Mazetto's avatar
Gabriel Mazetto committed
Rails/Date:
  Enabled: false

# Prefer delegate method for delegations.
Rails/Delegate:
Douwe Maan's avatar
Douwe Maan committed
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop checks dynamic `find_by_*` methods.
Douwe Maan's avatar
Douwe Maan committed
Rails/DynamicFindBy:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# This cop enforces that 'exit' calls are not used within a rails app.
Douwe Maan's avatar
Douwe Maan committed
Rails/Exit:
  Enabled: true
  Exclude:
    - lib/gitlab/upgrader.rb
    - 'lib/backup/**/*'

# Prefer `find_by` over `where.first`.
Rails/FindBy:

# Prefer `all.find_each` over `all.find`.
Rails/FindEach:
# Prefer has_many :through to has_and_belongs_to_many.
  Enabled: true
Douwe Maan's avatar
Douwe Maan committed
# This cop is used to identify usages of http methods like `get`, `post`,
# `put`, `patch` without the usage of keyword arguments in your tests and
# change them to use keyword args.
Douwe Maan's avatar
Douwe Maan committed
Rails/HttpPositionalArguments:
  Enabled: false

# Checks for calls to puts, print, etc.
  Exclude:
    - lib/gitlab/seeder.rb
    - lib/gitlab/upgrader.rb
    - 'lib/backup/**/*'
    - 'lib/tasks/**/*'
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for the use of output safety calls like html_safe and
# raw.
Douwe Maan's avatar
Douwe Maan committed
Rails/OutputSafety:
  Enabled: false

# Checks for incorrect grammar when using methods like `3.day.ago`.
Rails/PluralizationGrammar:

# Checks for `read_attribute(:attr)` and `write_attribute(:attr, val)`.
# Checks the arguments of ActiveRecord scopes.
Douwe Maan's avatar
Douwe Maan committed
# This cop checks for the use of Time methods without zone.
Douwe Maan's avatar
Douwe Maan committed
Rails/TimeZone:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# This cop checks for the use of old-style attribute validation macros.
Douwe Maan's avatar
Douwe Maan committed
Rails/Validation:
  Enabled: true

# RSpec #######################################################################
Robert Speicher's avatar
Robert Speicher committed

# Check that instances are not being stubbed globally.
Robert Speicher's avatar
Robert Speicher committed
RSpec/AnyInstance:
  Enabled: false

# Check for expectations where `be(...)` can replace `eql(...)`.
RSpec/BeEql:
  Enabled: true
# Check that the first argument to the top level describe is the tested class or
# module.
Robert Speicher's avatar
Robert Speicher committed
RSpec/DescribeClass:
  Enabled: false

# Use `described_class` for tested class / module.
Robert Speicher's avatar
Robert Speicher committed
RSpec/DescribeMethod:
  Enabled: false

# Checks that the second argument to top level describe is the tested method
# name.
RSpec/DescribedClass:
Robert Speicher's avatar
Robert Speicher committed
  Enabled: false

Robert Speicher's avatar
Robert Speicher committed
RSpec/ExampleLength:
  Enabled: false
  Max: 5

# Do not use should when describing your tests.
Robert Speicher's avatar
Robert Speicher committed
RSpec/ExampleWording:
  Enabled: false
  CustomTransform:
    be: is
    have: has
    not: does not
  IgnoredWords: []

# Checks for `expect(...)` calls containing literal values.
RSpec/ExpectActual:
  Enabled: true

# Checks the file and folder naming of the spec file.
Robert Speicher's avatar
Robert Speicher committed
RSpec/FilePath:
  Enabled: false
  CustomTransform:
    RuboCop: rubocop
    RSpec: rspec

# Checks if there are focused specs.
Robert Speicher's avatar
Robert Speicher committed
RSpec/Focus:
  Enabled: true

# Checks for the usage of instance variables.
Robert Speicher's avatar
Robert Speicher committed
RSpec/InstanceVariable:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# Checks for `subject` definitions that come after `let` definitions.
Douwe Maan's avatar
Douwe Maan committed
RSpec/LeadingSubject:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# Checks unreferenced `let!` calls being used for test setup.
Douwe Maan's avatar
Douwe Maan committed
RSpec/LetSetup:
  Enabled: false

Douwe Maan's avatar
Douwe Maan committed
# Check that chains of messages are not being stubbed.
Douwe Maan's avatar
Douwe Maan committed
RSpec/MessageChain: