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 '.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: