Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
5ee3477d4bdd
Commit
c7b31e40
authored
Aug 03, 2016
by
Grzegorz Bizon
Browse files
Enable some Rubocop cops related to new lines
parent
86a9d26cb196
Changes
7
Show whitespace changes
Inline
Side-by-side
.rubocop.yml
View file @
5ee3477d
...
...
@@ -149,7 +149,7 @@ Style/EmptyLinesAroundAccessModifier:
# Keeps track of empty lines around block bodies.
Style/EmptyLinesAroundBlockBody
:
Enabled
:
fals
e
Enabled
:
tru
e
# Keeps track of empty lines around class bodies.
Style/EmptyLinesAroundClassBody
:
...
...
@@ -161,7 +161,7 @@ Style/EmptyLinesAroundModuleBody:
# Keeps track of empty lines around method bodies.
Style/EmptyLinesAroundMethodBody
:
Enabled
:
fals
e
Enabled
:
tru
e
# Avoid the use of END blocks.
Style/EndBlock
:
...
...
spec/features/admin/admin_disables_git_access_protocol_spec.rb
View file @
5ee3477d
...
...
@@ -45,7 +45,6 @@
expect
(
page
).
to
have_content
(
"git clone
#{
project
.
ssh_url_to_repo
}
"
)
expect
(
page
).
to
have_selector
(
'#clone-dropdown'
)
end
end
def
visit_project
...
...
spec/lib/banzai/filter/video_link_filter_spec.rb
View file @
5ee3477d
...
...
@@ -47,5 +47,4 @@ def link_to_image(path)
expect
(
element
[
'src'
]).
to
eq
'/path/my_image.jpg'
end
end
end
spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
View file @
5ee3477d
...
...
@@ -534,7 +534,6 @@ module Ci
end
context
'when also global variables are defined'
do
end
context
'when syntax is correct'
do
...
...
spec/lib/gitlab/git/hook_spec.rb
View file @
5ee3477d
...
...
@@ -25,7 +25,6 @@ def create_failing_hook(name)
end
[
'pre-receive'
,
'post-receive'
,
'update'
].
each
do
|
hook_name
|
context
"when triggering a
#{
hook_name
}
hook"
do
context
"when the hook is successful"
do
it
"returns success with no errors"
do
...
...
spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
View file @
5ee3477d
...
...
@@ -2,7 +2,6 @@
describe
Gitlab
::
ImportExport
::
ProjectTreeRestorer
,
services:
true
do
describe
'restore project tree'
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:namespace
)
{
create
(
:namespace
,
owner:
user
)
}
let
(
:shared
)
{
Gitlab
::
ImportExport
::
Shared
.
new
(
relative_path:
""
,
project_path:
'path'
)
}
...
...
spec/lib/gitlab/user_access_spec.rb
View file @
5ee3477d
...
...
@@ -83,6 +83,5 @@
expect
(
access
.
can_merge_to_branch?
(
@branch
.
name
)).
to
be_falsey
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment