Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
Exclude /vendor from all cops [rubocop]
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Martinez committed Sep 19, 2016
1 parent 12293b7 commit 7781d46
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .rubocop.yml
Expand Up @@ -3,8 +3,9 @@ inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.3
Exclude:
- bin/**
- db/schema.rb
- 'bin/**/*'
- 'db/schema.rb'
- 'vendor/**/*'

Style/IndentationConsistency:
EnforcedStyle: normal
Expand All @@ -13,7 +14,7 @@ Style/IndentArray:
EnforcedStyle: consistent

Style/IndentHash:
EnforcedStyle: consistent
EnforcedStyle: consistent

Style/FirstParameterIndentation:
EnforcedStyle: consistent
Expand All @@ -28,4 +29,4 @@ Lint/BlockAlignment:
AlignWith: start_of_block

Lint/InheritException:
Enabled: false
Enabled: false

0 comments on commit 7781d46

Please sign in to comment.