Include settings for jshint, unfortunatley ignored by sublime for the time being.

This commit is contained in:
Jürg Lehni 2012-09-30 19:52:33 -07:00
parent 841a6a07ff
commit 3d8b5a17d1

View file

@ -30,6 +30,23 @@
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": false
"translate_tabs_to_spaces": false,
// Note, these do not currently work on project settings, but are the
// settings used to develop paper.js
"javascript_linter": "jshint",
"jshint_options":
{
"evil": true,
"regexdash": true,
"browser": true,
"wsh": true,
"trailing": false,
"smarttabs": true,
"sub": true,
"supernew": true,
"laxbreak": true,
"eqeqeq": false,
"eqnull": true
}
}
}