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

rubocop-ruby30.yml « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b984d761b8069b137711d52d1671dbfbd38a2278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# RuboCop configuration adjustments during the transition time from Ruby 2.7 to
# Ruby 3.0.
#
# After the transition has been completed:
# * Move all configuration which enabled or tweaked cops to .rubocop.yml.
# * Remove all remaining configuration.

# These cops are disabled in Ruby 2.7 (rubocop-27.yml).
Style/MutableConstant:
  Enabled: true
Style/RedundantFreeze:
  Enabled: true

# No longer needed because Ruby 3.0 will fail due to kwargs issues.
Lint/LastKeywordArgument:
  Enabled: false