As is fairly common these days, I use AMD modules to organize my JS. So I have a .jshintrc configured in each project accordingly:
{
"predef": [
"define",
"require"
]
}
On the command line, running jshint gives clear output. However Codekit seems to be ignoring the jshint when it runs, complaining about 'define' etc.
How can I make Codekit respect a .jshintrc file?