16 lines
529 B
YAML
16 lines
529 B
YAML
# RuboCop configuration adjustments during the transition time from Ruby 3.1 to
|
|
# Ruby 3.2.
|
|
#
|
|
# After the transition has been completed:
|
|
# * Enable all disabled cops and resolve the offenses.
|
|
# * Move all configuration which enabled or tweaked cops to .rubocop.yml.
|
|
# * Remove all remaining configuration.
|
|
|
|
# Short-hand Hash syntax does not work prior 3.1.
|
|
Style/HashSyntax:
|
|
EnforcedShorthandSyntax: never
|
|
|
|
# With 3.2+ `require 'set'` is no longer needed as it's always loaded.
|
|
Lint/RedundantRequireStatement:
|
|
Enabled: false
|