Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
Rubocop 0.7+
Browse files Browse the repository at this point in the history
Adds support for the new rubocop-rails and rubocop-perfomance cops.

Disables the Style/Documentation rule.
  • Loading branch information
mrleeio committed May 31, 2019
1 parent 5e5df9c commit efa9f8f
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
require: rubocop-rspec
require:
- rubocop-rspec
- rubocop-rails
- rubocop-performance

AllCops:
TargetRubyVersion: 2.5
Exclude:
- '.*'
- '**/coverage/'
- 'bin/**/*'
- 'config/routes.rb'
- 'db/**/*'
- 'log/**/*'
- 'org/**/*'
- 'public/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
- ".*"
- "**/coverage/"
- "bin/**/*"
- "config/routes.rb"
- "db/**/*"
- "log/**/*"
- "org/**/*"
- "public/**/*"
- "tmp/**/*"
- "vendor/**/*"

Metrics/LineLength:
Max: 120

Style/Documentation:
Enabled: false

0 comments on commit efa9f8f

Please sign in to comment.