diff options
author | Sean McGivern <sean@gitlab.com> | 2016-06-09 13:39:16 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2016-06-09 16:05:25 +0100 |
commit | 98bb435f4266719b1e0fca57472a0f4e50d30371 (patch) | |
tree | 530dcd4c4ee397ae77e94a493fcefae6b4df72a7 /.rubocop.yml | |
parent | 3803b380b43af2bdb20dced27fce79511dfb2897 (diff) | |
download | gitlab-ce-98bb435f4266719b1e0fca57472a0f4e50d30371.tar.gz |
Enable RuboCop for migrationsenable-rubocop-for-migrations
Migrations shouldn't fail RuboCop checks - especially lint checks, such
as the nested method check. To avoid changing code in existing
migrations, add the magic comment to the top of each of them to skip
that file.
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 678f7db025b..c637f5e12f5 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -13,7 +13,8 @@ AllCops: # Exclude some GitLab files Exclude: - 'vendor/**/*' - - 'db/**/*' + - 'db/*' + - 'db/fixtures/**/*' - 'tmp/**/*' - 'bin/**/*' - 'lib/backup/**/*' |