-
Notifications
You must be signed in to change notification settings - Fork 8
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
Pass executable for code style validator #10
Conversation
Please word the commit message in Present Simple, like "Passes name of code style validator", the rest is 👍 |
@nikolaykasyanov Don't know why Travis fails. Could you restart the build? |
@robertodr it seems to be crashing on a specific Ruby version (2.3.1) |
@robertodr I'm checking if master is affected as well, and if yes, I'll try to deal with it. |
@robertodr I'll merge #11 as soon as build is ready, thereafter you can rebase on master. This should fix the issue. |
Cool, thanks! |
@robertodr here we go! |
Rebased! 😸 |
Thank you! I'll make a new release on Monday. |
I use
clang-format-3.9
. Using the Trusty images on Travis, ships version 3.5 asclang-format
which generated some false positives for my project. I have added an additionalvalidator
parameter to prevent this. This could be a stepping stone to provide support for checkers othen thanclang-format
and for languages other than those covered byclang-format
. I have other projects where I would like to use yapf for Python, for example. I aim at filing a PR later on for these additions.