eclipsesource / jshint-eclipse

JSHint integration for the Eclipse IDE
http://github.eclipsesource.com/jshint-eclipse/
146 stars 31 forks source link

Newbie Question ... Probably floating around somewhere ... File/Folder Exclusions #96

Closed jmduke239 closed 10 years ago

jmduke239 commented 10 years ago

Hi, Just found jshint-eclipse and added to my project. I see how I can certainly share the JSHint settings, but I am lost on how to share Includes & Excludes with other developers. The settings seem to go into com.eclipsesource.jshint.ui.prefs, but this file doesn't seem to be one that SVN wants to share and give to others on the project. Is there a way to do this? If not, will there be a way to do this ... and soon?

Thanks ... Joe

paulvi commented 10 years ago

Possibly .svnignore is set to ignore .settings folder

Ask more on http://stackoverflow.com/

as said in #86

This is an open source platform. If you're seeking professional support, I can recommend http://eclipsesource.com/en/services/

jmduke239 commented 10 years ago

What I was really asking is does jshint-eclipse have the ability to take its inclusion/exclusion information and make it shareable in the project just like its jshint settings for what rules to allow? What I found was that the settings one makes in eclipse are stored in a file that doesn't seem to be a project-type file for others to use. This, to me, seems like a needed feature if it is missing; or, if it is there, the documentation isn't clear.

ralfstx commented 10 years ago

As Paul said, the information is currently kept in the project's .settings folder. Whether this folder is shared or not depends on your configuration.

I'd still like to replace the current inclusion/exclusion setting with #64, but no guarantees whether/when I'll find the time to do that. Quality contributions welcome.

paulvi commented 10 years ago

@jmduke239 Simply put, you just need to put com.eclipsesource.jshint.ui.prefs file that you have already discovered (together with .jshintrc) under VCS

jmduke239 commented 10 years ago

Thanks ...