jshint ignore external code

This commit is contained in:
ansuz 2016-02-15 16:51:54 +01:00
parent 278c4ab32f
commit c89f97202e
2 changed files with 16 additions and 2 deletions

View File

@ -3,3 +3,9 @@ www/bower_components/
www/code/codemirror-5.7/
www/code/mode/
www/code/codemirror.js
www/pad/rangy.js
www/common/virtual-dom.js
www/common/hyperscript.js
www/common/chainpad.js
www/code/rangy.js
storage/kad.js

View File

@ -1,7 +1,6 @@
{
"laxcomma": true,
"laxbreak": true,
"node": true,
"sub": true,
"curly": true,
"eqeqeq": true,
@ -11,5 +10,14 @@
"notypeof": true,
"shadow": false,
"undef": true,
"unused": false
"unused": false,
"futurehostile":true,
"browser": true,
"predef": [
"console",
"define",
"require",
"module",
"__dirname"
]
}