Added jsignore to ignore vendors directory

Updated editorconfig to allow jshintrc
Updated jshintrc to include globals and stuff acralyzer uses
This commit is contained in:
Gavin 2013-02-24 18:04:17 -08:00
parent ebfded8ea4
commit 8132e45ad3
3 changed files with 28 additions and 14 deletions

View File

@ -7,3 +7,9 @@ end_of_line = lf
insert_final_newline = true
indent_stype = space
indent_size = 4
[.jshintrc]
end_of_line = lf
insert_final_newline = true
indent_stype = space
indent_size = 4

1
.jshintignore Normal file
View File

@ -0,0 +1 @@
_attachments/vendor

View File

@ -1,16 +1,23 @@
{
"predef": {
"angular": true
},
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"browser": true
"predef": {
"angular": true,
"moment": true,
"d3": true,
"prettyPrint": true,
"acralyzerConfig": true
},
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"boss": true,
"eqnull": true,
"jquery": true,
"devel": true,
"browser": true
}