-
-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When specifying the extra_config_sections as an array #45
Conversation
15f397c
to
4d38dc3
Compare
We can't just change the test here in the .robocop.yml , the file is templated in. |
4d38dc3
to
637e417
Compare
I've reversed the .rubocop.yml to the "master-branch" version, but still shows as diff in the PR. The change was made to make it pass the Travis CI, don't have everything installed on my current machine to do local testing... Ok removed the .rubcopy.yml from the commit... |
it failed at first, seems the docker-image of ubuntu-16.04 requires the installation of "locales", since "locale-gen en_US.UTF-8" is not available otherwise. fixed it in the PR, now it's all green... |
8fd7fc8
to
47025ef
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks , sorry for the dealy.
.rubocop.yml
Outdated
@@ -302,7 +302,7 @@ Style/EmptyLiteral: | |||
Metrics/LineLength: | |||
Enabled: False | |||
|
|||
Style/MethodCallParentheses: | |||
Style/MethodCallWithoutArgsParentheses: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be submitted to pass with out modifying the rubocop configuration?
The option "extra_config_section" can be defined as an array, this adds the option to create multiple lines instead of one big line with all the parameters. This commit addresses issue voxpupuli#31
47025ef
to
ba3fe12
Compare
I've updated my PR, only changed what was needed for this function... |
the entries are set on multiple lines instead of joined on the same line
also fixed an error in the example which was missing some }