diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-08-06 03:44:39 +0200 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-08-06 03:44:39 +0200 |
commit | 2aa2f52191b746df851853cf5fe9ce7249a70739 (patch) | |
tree | e83c10ce7fd52a6bf3b95594a2cc06bf4cb8d3fe | |
parent | aa49c20e81210d8b397287eb1ec10a29bcd2f132 (diff) | |
download | gitlab-ce-2aa2f52191b746df851853cf5fe9ce7249a70739.tar.gz |
Enable Style/EmptyLinesAroundModuleBody cop
-rw-r--r-- | .rubocop.yml | 2 | ||||
-rw-r--r-- | app/helpers/avatars_helper.rb | 2 | ||||
-rw-r--r-- | lib/banzai/filter/video_link_filter.rb | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 556a5d11a39..b05ac369f61 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -157,7 +157,7 @@ Style/EmptyLinesAroundClassBody: # Keeps track of empty lines around module bodies. Style/EmptyLinesAroundModuleBody: - Enabled: false + Enabled: true # Keeps track of empty lines around method bodies. Style/EmptyLinesAroundMethodBody: diff --git a/app/helpers/avatars_helper.rb b/app/helpers/avatars_helper.rb index 6ff40c6b461..2160cf7a690 100644 --- a/app/helpers/avatars_helper.rb +++ b/app/helpers/avatars_helper.rb @@ -1,5 +1,4 @@ module AvatarsHelper - def author_avatar(commit_or_event, options = {}) user_avatar(options.merge({ user: commit_or_event.author, @@ -26,5 +25,4 @@ module AvatarsHelper mail_to(options[:user_email], avatar) end end - end diff --git a/lib/banzai/filter/video_link_filter.rb b/lib/banzai/filter/video_link_filter.rb index fd8b9a6f0cc..0f86ae83f72 100644 --- a/lib/banzai/filter/video_link_filter.rb +++ b/lib/banzai/filter/video_link_filter.rb @@ -1,6 +1,5 @@ module Banzai module Filter - # Find every image that isn't already wrapped in an `a` tag, and that has # a `src` attribute ending with a video extension, add a new video node and # a "Download" link in the case the video cannot be played. @@ -54,6 +53,5 @@ module Banzai container end end - end end |