Can JSLint be configured using an external config file in the same manner as JSHint's .jshintrc?
I've been developing a lot of small web development projects in various IDEs, and find myself laboriously typing in jslint configuration headers to silence JSLint. Its warnings and errors are all valid, and I want to keep JSLint in my work cycle, but I spin up 2-3 isolated environments a day, sometimes from generators in Yeoman, other times by hand. These all end up with gripes from JSLint that require the following in every .js file: /*jslint browser:true*/ /*global require,yada,yada,yada*/ JSHint has a wonderful feature whereby you can declare all these in a parent folder using the body of