You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
2 years ago
|
// NOTE: We use eslint now. This file is used only by shifter. We keep the configuration
|
||
|
// here because shifter uses jshint after modules have been concating. Eslint can't
|
||
|
// currently do this.
|
||
|
{
|
||
|
"asi": false,
|
||
|
"bitwise": true,
|
||
|
"boss": false,
|
||
|
"browser": true,
|
||
|
"curly": true,
|
||
|
"debug": false,
|
||
|
"eqeqeq": false,
|
||
|
"eqnull": false,
|
||
|
"es5": false,
|
||
|
"esnext": false,
|
||
|
"evil": false,
|
||
|
"expr": false,
|
||
|
"forin": false,
|
||
|
"funcscope": false,
|
||
|
"globalstrict": false,
|
||
|
"immed": true,
|
||
|
"indent": 4,
|
||
|
"iterator": false,
|
||
|
"lastsemic": false,
|
||
|
"latedef": true,
|
||
|
"laxbreak": true,
|
||
|
"laxcomma": false,
|
||
|
"loopfunc": false,
|
||
|
"maxerr": 500,
|
||
|
"maxlen": 132,
|
||
|
"multistr": false,
|
||
|
"newcap": true,
|
||
|
"noarg": true,
|
||
|
"noempty": true,
|
||
|
"nomen": false,
|
||
|
"onecase": false,
|
||
|
"onevar": false,
|
||
|
"passfail": false,
|
||
|
"plusplus": false,
|
||
|
"predef": [
|
||
|
"M",
|
||
|
"define",
|
||
|
"require"
|
||
|
],
|
||
|
"proto": false,
|
||
|
"regexdash": false,
|
||
|
"regexp": false,
|
||
|
"scripturl": false,
|
||
|
"shadow": false,
|
||
|
"smarttabs": false,
|
||
|
"strict": false,
|
||
|
"sub": false,
|
||
|
"supernew": false,
|
||
|
"trailing": true,
|
||
|
"undef": true,
|
||
|
"unused": true,
|
||
|
"white": false,
|
||
|
"yui": true
|
||
|
}
|