pdf.js/.jshintrc

33 lines
488 B
Plaintext
Raw Permalink Normal View History

2013-01-31 18:29:37 -05:00
{
// Environments
"browser": true,
"devel": true,
"worker": true,
"predef": [
"Promise",
"require",
"define",
"exports"
],
2013-01-31 18:29:37 -05:00
// Enforcing
2013-02-02 16:49:19 -06:00
"maxlen": 80,
2013-02-02 17:00:13 -06:00
"quotmark": "single",
2013-07-01 11:25:46 -05:00
"trailing": true,
"curly": true,
2014-07-19 16:41:07 +02:00
"undef": true,
"noarg": true,
"nonbsp": true,
2014-08-02 13:57:20 +02:00
"eqeqeq": true,
2013-01-31 18:29:37 -05:00
// Relaxing
"boss": true,
"funcscope": true,
"globalstrict": true,
"loopfunc": true,
"maxerr": 1000,
"nonstandard": true,
"sub": true,
"validthis": true
}