jshint ignore external code
parent
278c4ab32f
commit
c89f97202e
|
@ -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
|
||||
|
|
12
.jshintrc
12
.jshintrc
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue