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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 15:11:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-27 15:11:21 +0300
commit5471fef2360f9bcf604a026d5807a554dae243e9 (patch)
tree8b9c82036dc5da7fdf30ba3c2c5f85997ad41eaa /.rubocop.yml
parentb6f32e82a08a171debbb57236e8995b8d741e6a5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index f613a43b224..0ebb17ce593 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -119,6 +119,12 @@ Lint/EmptyFile:
- 'ee/db/embedding/seeds.rb'
- 'ee/db/geo/seeds.rb'
+# This file has a lot of these, and how we name classes here is essential for how we
+# implement migration versions
+Naming/ClassAndModuleCamelCase:
+ Exclude:
+ - 'lib/gitlab/database/migration.rb'
+
# This cop checks whether some constant value isn't a
# mutable literal (e.g. array or hash).
Style/MutableConstant: