.rubocop.yml
inherit_from: .rubocop_todo.yml
require:
- rubocop-performance
- rubocop-minitest
AllCops:
NewCops: enable
TargetRubyVersion: 2.5
DisplayCopNames: true
Include:
- '**/Rakefile'
- '**/config.ru'
- 'Gemfile'
- '**/*.rb'
- '**/*.rake'
Exclude:
<% `git status --ignored --porcelain`.lines.grep(/^!! /).each do |path| %>
- <%= path.sub(/^!! /, '') %>
<% end %>
- '**/*.js'
- '**/node_modules/**/*'
- '**/public/**/*'
- '**/tmp/**/*'
- 'vendor/**/*'
- 'test/dummy_sprockets/**/*'
- 'test/dummy_webpacker1/**/*'
- 'test/dummy_webpacker2/**/*'
- 'test/dummy_webpacker3/**/*'
- 'react_ujs/**/*'
Naming/FileName:
Exclude:
- '**/Gemfile'
- '**/Rakefile'
- 'lib/react-rails.rb'
Layout/LineLength:
Max: 120
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/Documentation:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Metrics/AbcSize:
Max: 28
Metrics/CyclomaticComplexity:
Max: 7
Metrics/PerceivedComplexity:
Max: 10
Metrics/ClassLength:
Max: 150
Metrics/ParameterLists:
Max: 5
CountKeywordArgs: false
Metrics/MethodLength:
Max: 41
Metrics/ModuleLength:
Max: 180
Naming/RescuedExceptionsVariableName:
Enabled: false
# Style/GlobalVars:
# Exclude:
# - 'spec/dummy/config/environments/development.rb'
Metrics/BlockLength:
Exclude:
- 'test/**/*_test.rb'