It seems it doesn't work at all to control JsHint. I haven't tried anything else.
I tried even just this as file contents:
enable_jshint: false
but still, it gives Javascript errors. I was trying to add esversion:6 because I'm getting ES6 syntax errors:
# Json contents to be passed to JSHint (it's passed directly as specified
# and may be configured based on http://www.jshint.com/docs/options/)
jshint_opts: |-
{
"browser": true,
"undef": true,
"unused": true,
"esversion": "6"
}
Tried esversion with double quotes and without for the 6.
I am putting the file in the project root, or .settings, or both, but still nothing. Closed/opened, restarted the entire IDE too. What is the procedure to refresh reading the file, do I need to restart?
Does the project have to be a certain type of project or have a facet?