allow moz and es6 settings to work together
This commit is contained in:
parent
41b0914299
commit
6788031994
1 changed files with 0 additions and 9 deletions
|
|
@ -1444,9 +1444,6 @@ var JSHINT = (function () {
|
|||
}
|
||||
|
||||
function assume() {
|
||||
if (state.option.es5) {
|
||||
warning("I003");
|
||||
}
|
||||
if (state.option.couch) {
|
||||
combine(predefined, vars.couch);
|
||||
}
|
||||
|
|
@ -1514,16 +1511,10 @@ var JSHINT = (function () {
|
|||
// Let's assume that chronologically ES3 < ES5 < ES6/ESNext < Moz
|
||||
|
||||
state.option.inMoz = function (strict) {
|
||||
if (strict) {
|
||||
return state.option.moz && !state.option.esnext;
|
||||
}
|
||||
return state.option.moz;
|
||||
};
|
||||
|
||||
state.option.inESNext = function (strict) {
|
||||
if (strict) {
|
||||
return !state.option.moz && state.option.esnext;
|
||||
}
|
||||
return state.option.moz || state.option.esnext;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue