mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
143 lines
2.2 KiB
YAML
143 lines
2.2 KiB
YAML
AllCops:
|
|
DisabledByDefault: false
|
|
TargetRubyVersion: 2.2.2
|
|
Exclude:
|
|
- 'capybara.gemspec'
|
|
|
|
#################### Lint ################################
|
|
|
|
Metrics/LineLength:
|
|
Description: 'Limit lines to 80 characters.'
|
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
|
|
Enabled: false
|
|
|
|
Metrics/BlockLength:
|
|
Exclude:
|
|
- 'spec/**/*'
|
|
- 'lib/capybara/spec/**/*'
|
|
|
|
Metrics/AbcSize:
|
|
Enabled: false
|
|
|
|
Metrics/ClassLength:
|
|
CountComments: false
|
|
Enabled: false
|
|
|
|
Metrics/CyclomaticComplexity:
|
|
Enabled: false
|
|
|
|
Metrics/MethodLength:
|
|
CountComments: false
|
|
Enabled: false
|
|
|
|
Metrics/ModuleLength:
|
|
Enabled: false
|
|
CountComments: false
|
|
|
|
Metrics/PerceivedComplexity:
|
|
Enabled: false
|
|
|
|
Lint/UnusedMethodArgument:
|
|
Exclude:
|
|
- 'lib/capybara/driver/base.rb'
|
|
- 'lib/capybara/driver/node.rb'
|
|
|
|
Lint/HandleExceptions:
|
|
Enabled: false
|
|
|
|
Lint/Loop:
|
|
Enabled: false
|
|
|
|
Layout/EndAlignment:
|
|
EnforcedStyleAlignWith: variable
|
|
|
|
Naming/PredicateName:
|
|
Exclude:
|
|
- '**/*/*matchers.rb'
|
|
|
|
Naming/UncommunicativeMethodParamName:
|
|
AllowedNames:
|
|
- 'el'
|
|
- 'id'
|
|
- 'c'
|
|
- 'x'
|
|
- 'y'
|
|
- 'on'
|
|
|
|
Style/RescueStandardError:
|
|
Enabled: false
|
|
|
|
Style/ParallelAssignment:
|
|
Enabled: false
|
|
|
|
Style/SingleLineMethods:
|
|
Enabled: false
|
|
|
|
Style/StringLiterals:
|
|
Enabled: false
|
|
|
|
Style/StringLiteralsInInterpolation:
|
|
Enabled: false
|
|
|
|
Style/RegexpLiteral:
|
|
Enabled: false
|
|
|
|
Style/RescueModifier:
|
|
Enabled: false
|
|
|
|
Style/Alias:
|
|
Enabled: false
|
|
|
|
Style/AndOr:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Style/DoubleNegation:
|
|
Enabled: false
|
|
|
|
Style/ClassVars:
|
|
Enabled: false
|
|
|
|
Style/GuardClause:
|
|
Enabled: false
|
|
|
|
Style/EmptyElse:
|
|
EnforcedStyle: empty
|
|
|
|
Style/RedundantReturn:
|
|
Enabled: false
|
|
|
|
Style/ClassAndModuleChildren:
|
|
Enabled: false
|
|
|
|
Style/ModuleFunction:
|
|
Enabled: false
|
|
|
|
Style/NumericLiterals:
|
|
Exclude:
|
|
- 'lib/capybara/spec/**/*'
|
|
- 'spec/**/*'
|
|
|
|
Style/MultilineIfModifier:
|
|
Exclude:
|
|
- 'lib/capybara/spec/**/*'
|
|
- 'spec/**/*'
|
|
|
|
Layout/EmptyLineBetweenDefs:
|
|
AllowAdjacentOneLineDefs: true
|
|
|
|
Layout/AccessModifierIndentation:
|
|
EnforcedStyle: outdent
|
|
|
|
Layout/CaseIndentation:
|
|
EnforcedStyle: end
|
|
|
|
Layout/IndentArray:
|
|
EnforcedStyle: consistent
|
|
|
|
Security/YAMLLoad:
|
|
Exclude:
|
|
- 'lib/capybara/spec/**/*'
|
|
- 'spec/**/*'
|