diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-22 11:31:16 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-10-22 11:31:16 +0000 |
commit | 905c1110b08f93a19661cf42a276c7ea90d0a0ff (patch) | |
tree | 756d138db422392c00471ab06acdff92c5a9b69c /.rubocop.yml | |
parent | 50d93f8d1686950fc58dda4823c4835fd0d8c14b (diff) | |
download | gitlab-ce-905c1110b08f93a19661cf42a276c7ea90d0a0ff.tar.gz |
Add latest changes from gitlab-org/gitlab@12-4-stable-ee
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 693ee0ae847..049340f90d4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -51,7 +51,6 @@ Style/FrozenStringLiteralComment: - 'danger/**/*' - 'db/**/*' - 'ee/db/**/*' - - 'ee/spec/**/*' - 'ee/lib/tasks/**/*' - 'lib/tasks/**/*' - 'qa/**/*' @@ -179,6 +178,11 @@ Gitlab/ModuleWithInstanceVariables: - spec/support/**/*.rb - features/steps/**/*.rb +Gitlab/ConstGetInheritFalse: + Enabled: true + Exclude: + - 'qa/bin/*' + Gitlab/HTTParty: Enabled: true Exclude: @@ -218,6 +222,12 @@ ActiveRecordAssociationReload: - 'spec/**/*' - 'ee/spec/**/*' +Naming/PredicateName: + Enabled: true + Exclude: + - 'spec/**/*' + - 'ee/spec/**/*' + RSpec/FactoriesInMigrationSpecs: Enabled: true Include: |