-
Notifications
You must be signed in to change notification settings - Fork 579
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
Temporary fixes for CheckstyleBear & RamllintBear #1471
Conversation
bears/java/CheckstyleBear.py
Outdated
'http://sourceforge.net/projects/checkstyle/files/checkstyle/6.15' | ||
'/checkstyle-6.15-all.jar', | ||
'checkstyle.jar') | ||
'https://github.com/Berkeley-CS61B/skeleton-sp16/raw/master' |
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 we use our own fork of that? we don't know when that link would 404
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.
Or create a new repo and put all of our fetched files in it?
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.
Done
Fetching the jar from sourceforge.net is resulting in corrupt jar files, and the error reporting and recovery within coala isnt sufficient for this. Until the download code is more reliable, fetch the jar from GitHub. Related to coala#1461
package.json
Outdated
@@ -15,7 +15,7 @@ | |||
"happiness": "~7.1.2", | |||
"jshint": "~2", | |||
"postcss-cli": "~2", | |||
"ramllint": "~1.2.2", | |||
"ramllint": ">1.2.2 <1.2.4", |
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.
Clarification: should this be >=1.2.2
or just >1.2.2
?
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.
Oh, well spotted. Yes, 1.2.2 is still ok.
ack fd305e0 |
ramllint 1.2.4 is broken. Fixes coala#1470
ack 4daad8d |
@rultor merge |
Workarounds for #1461 and #1470 .