2018-04-27 11:01:47 -07:00
|
|
|
require:
|
|
|
|
- rubocop-rspec
|
2019-03-27 13:27:40 -07:00
|
|
|
- rubocop-performance
|
2018-04-27 11:01:47 -07:00
|
|
|
|
2016-11-21 16:28:45 -08:00
|
|
|
AllCops:
|
2018-01-08 12:23:54 -08:00
|
|
|
DisabledByDefault: false
|
2019-03-25 09:37:25 -07:00
|
|
|
TargetRubyVersion: 2.4
|
2017-11-13 13:04:47 -08:00
|
|
|
Exclude:
|
2019-03-27 14:32:42 -07:00
|
|
|
- 'vendor/**/*'
|
|
|
|
- 'gemfiles/vendor/**/*'
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
#################### Lint ################################
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Metrics/LineLength:
|
|
|
|
Description: 'Limit lines to 80 characters.'
|
|
|
|
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
|
2018-10-12 16:21:53 -07:00
|
|
|
Exclude:
|
|
|
|
- 'spec/**/*'
|
|
|
|
- 'lib/capybara/spec/**/*'
|
2018-11-02 11:38:58 -07:00
|
|
|
- 'lib/capybara/selector.rb'
|
2018-10-12 16:21:53 -07:00
|
|
|
IgnoredPatterns:
|
2019-04-29 11:11:01 -07:00
|
|
|
- '\s+# _?rubocop'
|
2018-11-12 10:34:15 -08:00
|
|
|
- '^\s*#'
|
|
|
|
- '^\s*(raise|warn) '
|
2018-10-12 16:21:53 -07:00
|
|
|
Max: 120
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-02-28 16:11:41 -08:00
|
|
|
Metrics/BlockLength:
|
|
|
|
Exclude:
|
|
|
|
- 'spec/**/*'
|
|
|
|
- 'lib/capybara/spec/**/*'
|
2019-04-19 15:20:10 -07:00
|
|
|
- 'capybara.gemspec'
|
2019-05-08 16:03:57 -07:00
|
|
|
ExcludedMethods:
|
|
|
|
- Capybara.add_selector
|
2019-07-31 12:32:44 -07:00
|
|
|
- Capybara::Selector::FilterSet.add
|
2018-02-28 16:11:41 -08:00
|
|
|
|
2016-11-21 16:28:45 -08:00
|
|
|
Metrics/AbcSize:
|
2018-01-11 16:45:50 -08:00
|
|
|
Enabled: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
|
|
|
Metrics/ClassLength:
|
2018-01-11 16:45:50 -08:00
|
|
|
CountComments: false
|
|
|
|
Enabled: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
|
|
|
Metrics/CyclomaticComplexity:
|
2018-01-11 16:45:50 -08:00
|
|
|
Enabled: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
|
|
|
Metrics/MethodLength:
|
2018-01-11 16:45:50 -08:00
|
|
|
CountComments: false
|
|
|
|
Enabled: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
|
|
|
Metrics/ModuleLength:
|
2018-01-11 16:45:50 -08:00
|
|
|
Enabled: false
|
|
|
|
CountComments: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
|
|
|
Metrics/PerceivedComplexity:
|
2018-01-11 16:45:50 -08:00
|
|
|
Enabled: false
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-05-16 20:04:24 -07:00
|
|
|
Metrics/ParameterLists:
|
2019-05-08 16:03:57 -07:00
|
|
|
CountKeywordArgs: false
|
2018-05-16 20:04:24 -07:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Lint/UnusedMethodArgument:
|
|
|
|
Exclude:
|
|
|
|
- 'lib/capybara/driver/base.rb'
|
|
|
|
- 'lib/capybara/driver/node.rb'
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-03-16 09:46:35 -07:00
|
|
|
Layout/EndAlignment:
|
2018-01-09 14:05:50 -08:00
|
|
|
EnforcedStyleAlignWith: variable
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Naming/PredicateName:
|
|
|
|
Exclude:
|
|
|
|
- '**/*/*matchers.rb'
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-03-16 09:46:35 -07:00
|
|
|
Naming/UncommunicativeMethodParamName:
|
|
|
|
AllowedNames:
|
|
|
|
- 'el'
|
|
|
|
- 'id'
|
|
|
|
- 'c'
|
|
|
|
- 'x'
|
|
|
|
- 'y'
|
|
|
|
- 'on'
|
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Style/ParallelAssignment:
|
2016-11-21 16:28:45 -08:00
|
|
|
Enabled: false
|
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Style/SingleLineMethods:
|
2016-11-21 16:28:45 -08:00
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
Style/Alias:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
Style/Documentation:
|
2018-05-14 14:30:34 -07:00
|
|
|
Exclude:
|
|
|
|
- 'lib/capybara/spec/**/*'
|
|
|
|
- 'spec/**/*'
|
2016-11-21 16:28:45 -08:00
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
Style/DoubleNegation:
|
|
|
|
Enabled: false
|
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Style/EmptyElse:
|
|
|
|
EnforcedStyle: empty
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Style/ClassAndModuleChildren:
|
2016-11-21 16:28:45 -08:00
|
|
|
Enabled: false
|
|
|
|
|
2018-02-28 16:11:41 -08:00
|
|
|
Style/NumericLiterals:
|
|
|
|
Exclude:
|
|
|
|
- 'lib/capybara/spec/**/*'
|
|
|
|
- 'spec/**/*'
|
|
|
|
|
2019-04-19 15:20:10 -07:00
|
|
|
Style/SpecialGlobalVars:
|
|
|
|
Exclude:
|
|
|
|
- 'capybara.gemspec'
|
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Layout/EmptyLineBetweenDefs:
|
|
|
|
AllowAdjacentOneLineDefs: true
|
2016-11-21 16:28:45 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Layout/AccessModifierIndentation:
|
|
|
|
EnforcedStyle: outdent
|
2018-01-08 15:30:09 -08:00
|
|
|
|
2018-01-09 14:05:50 -08:00
|
|
|
Layout/CaseIndentation:
|
|
|
|
EnforcedStyle: end
|
2018-02-28 16:11:41 -08:00
|
|
|
|
2019-04-29 11:11:01 -07:00
|
|
|
Layout/IndentFirstArrayElement:
|
2018-02-28 16:11:41 -08:00
|
|
|
EnforcedStyle: consistent
|
|
|
|
|
2019-05-30 15:07:27 -07:00
|
|
|
Layout/IndentationWidth:
|
|
|
|
IgnoredPatterns: ['^\s*module']
|
|
|
|
|
2018-02-28 16:11:41 -08:00
|
|
|
Security/YAMLLoad:
|
|
|
|
Exclude:
|
|
|
|
- 'lib/capybara/spec/**/*'
|
|
|
|
- 'spec/**/*'
|
2018-04-27 11:01:47 -07:00
|
|
|
|
|
|
|
RSpec/ExampleWording:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/InstanceVariable:
|
2019-02-25 15:50:24 -08:00
|
|
|
AssignmentOnly: true
|
2018-04-27 11:01:47 -07:00
|
|
|
|
|
|
|
RSpec/ExampleLength:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/MultipleExpectations:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/ContextWording:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/NestedGroups:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/DescribeClass:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/FilePath:
|
|
|
|
Enabled: false
|
|
|
|
|
|
|
|
RSpec/PredicateMatcher:
|
|
|
|
Enabled: false
|
2018-06-19 13:57:42 -07:00
|
|
|
|
|
|
|
Capybara/FeatureMethods:
|
|
|
|
Enabled: false
|