diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-16 18:25:58 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-06-16 18:25:58 +0000 |
commit | a5f4bba440d7f9ea47046a0a561d49adf0a1e6d4 (patch) | |
tree | fb69158581673816a8cd895f9d352dcb3c678b1e /.rubocop.yml | |
parent | d16b2e8639e99961de6ddc93909f3bb5c1445ba1 (diff) | |
download | gitlab-ce-a5f4bba440d7f9ea47046a0a561d49adf0a1e6d4.tar.gz |
Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index d086bdf7361..a26e9ab986b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -36,8 +36,9 @@ AllCops: - 'plugins/**/*' - 'file_hooks/**/*' - 'workhorse/**/*' + - 'spec/support/*.git/**/*' # e.g. spec/support/gitlab-git-test.git CacheRootDirectory: tmp - MaxFilesInCache: 18000 + MaxFilesInCache: 25000 Cop/AvoidKeywordArgumentsInSidekiqWorkers: Enabled: true @@ -89,6 +90,7 @@ RSpec/FilePath: - 'spec/frontend/fixtures/*' - 'ee/spec/frontend/fixtures/*' - 'spec/requests/api/v3/*' + - 'spec/fixtures/**/*' # Configuration parameters: AllowSubject. RSpec/MultipleMemoizedHelpers: @@ -663,3 +665,8 @@ Style/RegexpLiteralMixedPreserve: - mixed - mixed_preserve EnforcedStyle: mixed_preserve + +RSpec/TopLevelDescribePath: + Exclude: + - 'spec/fixtures/**/*.rb' + - 'ee/spec/fixtures/**/*.rb' |