cfjedimaster / brackets-jshint

Adds JSHint support to Brackets
MIT License
130 stars 41 forks source link

add support for a jshint options via config.js file #2

Closed bengarnett closed 12 years ago

bengarnett commented 12 years ago

added config.js

options is an optional object of options which control the operation of JSHINT. Most of the options are booleans: They are all optional and have a default value of false.

globals is an object of global variables, with keys as names and a boolean value to determine if they are assignable.

{ "options": { //add options here }, "globals" { //add globals here } }

cfjedimaster commented 12 years ago

Looks nice - thanks!