-
Notifications
You must be signed in to change notification settings - Fork 17
Support classpath configuration via .classpath files. #30
Conversation
Linter clang used to do something similar and it was not helpful in the I would much prefer if a .classpath file like that used by On Thu, Aug 6, 2015, 7:37 PM daw42 notifications@github.com wrote:
|
Hi @k2b6s9j, I looked at the |
I understand that. But the problem is that this file only supports the On Fri, Aug 7, 2015, 2:29 PM daw42 notifications@github.com wrote:
|
Did you mean the javac linter? Ok, I'll update to use |
Sorry. Yes I meant that. Thank you. On Fri, Aug 7, 2015, 2:44 PM daw42 notifications@github.com wrote:
|
Updated, thanks. |
Do you need anything else in order to merge this? Thanks. |
@k2b6s9j has been busy throughout the weekend I think. He'll have a look into this soon, hopefully. |
Awesome! This will be in the next minor update! |
Support classpath configuration via .classpath files.
This PR allows for configuration of the classpath on a per-project basis via .cson files. The user can place a
.linter-javac.cson
file within their project and the linter will use the classpath that is provided within the file.Additionally, it will execute the
javac
command in the directory of the.cson
file so it is possible to use paths that are relative to the.cson
configuration file.season
for CSON parsingThis makes it much more convenient to configure different classpaths for each project.