Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rubocop-ruby32.yml « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d0e8a46c60d86e8d57d636b51e3ed67659c564f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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