Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not run rubocop on Travis #64

Merged
merged 2 commits into from
Jan 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,28 +58,28 @@ Style/AsciiComments:
Lint/EndAlignment:
Enabled: false

Style/ElseAlignment:
Layout/ElseAlignment:
Enabled: false

Style/IndentationWidth:
Layout/IndentationWidth:
Enabled: false

Style/AlignParameters:
Layout/AlignParameters:
Enabled: false

Style/ClosingParenthesisIndentation:
Layout/ClosingParenthesisIndentation:
Enabled: false

Style/MultilineMethodCallIndentation:
Layout/MultilineMethodCallIndentation:
Enabled: false

Style/IndentArray:
Layout/IndentArray:
Enabled: false

Style/IndentHash:
Layout/IndentHash:
Enabled: false

Style/AlignHash:
Layout/AlignHash:
Enabled: false

# From http://relaxed.ruby.style/
Expand All @@ -100,7 +100,7 @@ Style/Documentation:
Enabled: false
StyleGuide: http://relaxed.ruby.style/#styledocumentation

Style/DotPosition:
Layout/DotPosition:
Enabled: false
StyleGuide: http://relaxed.ruby.style/#styledotposition

Expand Down Expand Up @@ -168,11 +168,11 @@ Style/SingleLineMethods:
Enabled: false
StyleGuide: http://relaxed.ruby.style/#stylesinglelinemethods

Style/SpaceBeforeBlockBraces:
Layout/SpaceBeforeBlockBraces:
Enabled: false
StyleGuide: http://relaxed.ruby.style/#stylespacebeforeblockbraces

Style/SpaceInsideParens:
Layout/SpaceInsideParens:
Enabled: false
StyleGuide: http://relaxed.ruby.style/#stylespaceinsideparens

Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ before_script:
- bundle exec rake test_app

script:
- bundle exec rubocop
- bundle exec rspec

rvm:
Expand Down