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

Commit

Permalink
touchups
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Pezza committed Dec 7, 2019
1 parent ba58895 commit 61422e8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v1
- name: Set up Ruby
uses: actions/setup-ruby@v1
uses: actions/setup-ruby@v1.1.0
with:
ruby-version: ${{ matrix.ruby }}

Expand Down
22 changes: 11 additions & 11 deletions .rubocop.yml
Expand Up @@ -140,7 +140,7 @@ Lint/EnsureReturn:
Lint/FormatParameterMismatch:
Description: The number of parameters to format/sprint must match the fields.
Enabled: true
Lint/HandleExceptions:
Lint/SuppressedException:
Description: Don't suppress exception.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
Enabled: true
Expand Down Expand Up @@ -174,7 +174,7 @@ Lint/ShadowingOuterLocalVariable:
Description: Do not use the same name as outer local variable for block arguments
or block local variables.
Enabled: true
Lint/StringConversionInInterpolation:
Lint/RedundantStringCoercion:
Description: Checks for Object#to_s usage in string interpolation.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-to-s
Enabled: true
Expand Down Expand Up @@ -303,14 +303,14 @@ Style/Alias:
Description: Use alias_method instead of alias.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#alias-method
Enabled: false
Layout/AlignArray:
Layout/ArrayAlignment:
Description: Align the elements of an array literal if they span more than one line.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays
Enabled: true
Layout/AlignHash:
Layout/HashAlignment:
Description: Align the elements of a hash literal if they span more than one line.
Enabled: true
Layout/AlignParameters:
Layout/ParameterAlignment:
Description: Align the parameters of a method call if they span more than one line.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-double-indent
Enabled: true
Expand Down Expand Up @@ -482,7 +482,7 @@ Layout/InitialIndentation:
Description: Checks the indentation of the first non-blank non-comment line in a
file.
Enabled: false
Layout/IndentFirstArgument:
Layout/FirstArgumentIndentation:
Description: Checks the indentation of the first parameter in a method call.
Enabled: false
Lint/FlipFlop:
Expand Down Expand Up @@ -526,10 +526,10 @@ Layout/IndentationWidth:
Description: Use 2 spaces for indentation.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-indentation
Enabled: true
Layout/IndentFirstArrayElement:
Layout/FirstArrayElementIndentation:
Description: Checks the indentation of the first element in an array literal.
Enabled: false
Layout/IndentFirstHashElement:
Layout/FirstHashElementIndentation:
Description: Checks the indentation of the first key in a hash literal.
Enabled: false
Style/InfiniteLoop:
Expand Down Expand Up @@ -815,7 +815,7 @@ Layout/Tab:
Description: No hard tabs.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-indentation
Enabled: false
Layout/TrailingBlankLines:
Layout/TrailingEmptyLines:
Description: Checks trailing blank lines and final newline.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#newline-eof
Enabled: false
Expand All @@ -835,10 +835,10 @@ Style/UnlessElse:
Description: Do not use unless with else. Rewrite these with the positive case first.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-else-with-unless
Enabled: true
Style/UnneededCapitalW:
Style/RedundantCapitalW:
Description: Checks for %W when interpolation is not needed.
Enabled: false
Style/UnneededPercentQ:
Style/RedundantPercentQ:
Description: Checks for %q/%Q when single quotes or double quotes would do.
StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-q
Enabled: false
Expand Down

0 comments on commit 61422e8

Please sign in to comment.