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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gems/config/rubocop.yml')
-rw-r--r--gems/config/rubocop.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/gems/config/rubocop.yml b/gems/config/rubocop.yml
index ca46e30e2cd..7cad83bbe66 100644
--- a/gems/config/rubocop.yml
+++ b/gems/config/rubocop.yml
@@ -96,10 +96,6 @@ RSpec/ContextWording:
RSpec/FeatureCategory:
Enabled: false
-# Enable once we drop 3.0 support
-Style/HashSyntax:
- Enabled: false
-
Style/InlineDisableAnnotation:
Enabled: false
@@ -114,3 +110,8 @@ Style/RegexpLiteralMixedPreserve:
- mixed
- mixed_preserve
EnforcedStyle: mixed_preserve
+
+# Short-hand Hash syntax does not work prior 3.1.
+# See https://gitlab.com/gitlab-org/gitlab/-/issues/435940#note_1703307479
+Style/HashSyntax:
+ EnforcedShorthandSyntax: never