Commit a1565182 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'rubocop/enable-space-before-comment-cop' into 'master'

Enable Style/SpaceBeforeComment rubocop cop

See #17478 

See merge request !4358
parents c96927bc 53bf080f
...@@ -574,7 +574,7 @@ Style/SpaceBeforeComma: ...@@ -574,7 +574,7 @@ Style/SpaceBeforeComma:
# Checks for missing space between code and a comment on the same line. # Checks for missing space between code and a comment on the same line.
Style/SpaceBeforeComment: Style/SpaceBeforeComment:
Enabled: false Enabled: true
# Checks that exactly one space is used between a method name and the first # Checks that exactly one space is used between a method name and the first
# argument for method calls without parentheses. # argument for method calls without parentheses.
......
...@@ -71,7 +71,7 @@ Doorkeeper.configure do ...@@ -71,7 +71,7 @@ Doorkeeper.configure do
# The value can be any string. Use nil to disable this feature. When disabled, clients must provide a valid URL # The value can be any string. Use nil to disable this feature. When disabled, clients must provide a valid URL
# (Similar behaviour: https://developers.google.com/accounts/docs/OAuth2InstalledApp#choosingredirecturi) # (Similar behaviour: https://developers.google.com/accounts/docs/OAuth2InstalledApp#choosingredirecturi)
# #
native_redirect_uri nil#'urn:ietf:wg:oauth:2.0:oob' native_redirect_uri nil # 'urn:ietf:wg:oauth:2.0:oob'
# Specify what grant flows are enabled in array of Strings. The valid # Specify what grant flows are enabled in array of Strings. The valid
# strings and the flows they enable are: # strings and the flows they enable are:
......
...@@ -27,7 +27,7 @@ class EventFilter ...@@ -27,7 +27,7 @@ class EventFilter
@params = if params @params = if params
params.dup params.dup
else else
[]#EventFilter.default_filter [] # EventFilter.default_filter
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment