8000 Updating libraries for Ruby SDK by aliabbasrizvi · Pull Request #123 · optimizely/ruby-sdk · GitHub
[go: up one dir, main page]

Skip to content

Updating libraries for Ruby SDK #123

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

Merged
merged 3 commits into from
Aug 28, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Addressing rubocop feedback
  • Loading branch information
aliabbasrizvi committed Aug 28, 2018
commit 21a3f7fcfb198bbe69a736b068f36f4221705e25
25 changes: 14 additions & 11 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ inherit_from: .rubocop_todo.yml
AllCops:
TargetRubyVersion: 2.3

Metrics/AbcSize:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space

Metrics/CyclomaticComplexity:
Metrics/AbcSize:
Enabled: false

Metrics/PerceivedComplexity:
Metrics/BlockLength:
Enabled: false

Metrics/ClassLength:
Enabled: false

Metrics/BlockLength:
Metrics/CyclomaticComplexity:
Enabled: false

Metrics/LineLength:
Expand All @@ -27,17 +27,20 @@ Metrics/MethodLength:
Metrics/ModuleLength:
Enabled: false

Style/Documentation:
Metrics/PerceivedComplexity:
Enabled: false

Style/SignalException:
EnforcedStyle: only_raise
Naming/VariableNumber:
Enabled: false

Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Style/Documentation:
Enabled: false

Naming/VariableNumber:
Style/FrozenStringLiteralComment:
Enabled: false

Style/RescueStandardError:
Enabled: false

Style/SignalException:
Enabled: false
0