You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Error if RuboCop 0.82.0 or higher
```
% bundle exec rubocop
Error: RuboCop found unsupported Ruby version 2.3 in `TargetRubyVersion` parameter (in .rubocop.yml). 2.3-compatible analysis was dropped after version 0.81.
Supported versions: 2.4, 2.5, 2.6, 2.7, 2.8
```
Note: Will consider to drop older Ruby versions at ruby-plsql itself.
* Rename `Layout/IndentFirstArgument` to `Layout/FirstArgumentIndentation`
and `Layout/TrailingBlankLines` to `Layout/TrailingEmptyLines` using mry
```
% gem install mry
mry --target=0.81.0 .rubocop.yml
```
* Remove `Style/BracesAroundHashParameters` cop manually
```
% bundle exec rubocop
Error: RuboCop found unsupported Ruby version 2.3 in `TargetRubyVersion` parameter (in .rubocop.yml). 2.3-compatible analysis was dropped after version 0.81.
Error: The `Style/BracesAroundHashParameters` cop has been removed.
(obsolete configuration found in .rubocop.yml, please update it)
```
0 commit comments