pdf.js/.jshintrc

27 lines
411 B
Plaintext
Raw Normal View History

2013-02-01 08:29:37 +09:00
{
// Environments
"browser": true,
"devel": true,
"worker": true,
// Enforcing
2013-02-03 07:49:19 +09:00
"maxlen": 80,
2013-02-03 08:00:13 +09:00
"quotmark": "single",
2013-07-02 01:25:46 +09:00
"trailing": true,
"curly": true,
2014-07-19 23:41:07 +09:00
"undef": true,
"noarg": true,
"nonbsp": true,
2014-08-02 20:57:20 +09:00
"eqeqeq": true,
2013-02-01 08:29:37 +09:00
// Relaxing
"boss": true,
"funcscope": true,
"globalstrict": true,
"loopfunc": true,
"maxerr": 1000,
"nonstandard": true,
"sub": true,
"validthis": true
}