[Firefox addon] Temporarily disable the ESLint semi rule, around the DEFAULT_PREFERENCES declaration, to prevent mozilla-central test errors

While this doesn't actually fix the underlying issue, it should prevent the ESLint errors and thus make future PDF.js updates easier.
Compared to updating (and testing) the preprocessor, this seems like a reasonable workaround given its simplicity.
This commit is contained in:
Jonas Jenwald 2017-12-05 20:31:13 +01:00
parent f299473697
commit b15de69c52
3 changed files with 9 additions and 3 deletions

View File

@ -45,11 +45,13 @@ function log(str) {
} }
function initializeDefaultPreferences() { function initializeDefaultPreferences() {
/* eslint-disable semi */
var DEFAULT_PREFERENCES = var DEFAULT_PREFERENCES =
//#include ../../web/default_preferences.json //#include ../../web/default_preferences.json
//#if false //#if false
"end of DEFAULT_PREFERENCES"; "end of DEFAULT_PREFERENCES"
//#endif //#endif
/* eslint-enable semi */
var defaultBranch = Services.prefs.getDefaultBranch(EXT_PREFIX + "."); var defaultBranch = Services.prefs.getDefaultBranch(EXT_PREFIX + ".");
var defaultValue; var defaultValue;

View File

@ -79,11 +79,13 @@ function isDefaultHandler() {
} }
function initializeDefaultPreferences() { function initializeDefaultPreferences() {
/* eslint-disable semi */
var DEFAULT_PREFERENCES = var DEFAULT_PREFERENCES =
//#include ../../../web/default_preferences.json //#include ../../../web/default_preferences.json
//#if false //#if false
"end of DEFAULT_PREFERENCES"; "end of DEFAULT_PREFERENCES"
//#endif //#endif
/* eslint-enable semi */
var defaultBranch = Services.prefs.getDefaultBranch(PREF_PREFIX + "."); var defaultBranch = Services.prefs.getDefaultBranch(PREF_PREFIX + ".");
var defaultValue; var defaultValue;

View File

@ -33,11 +33,13 @@ XPCOMUtils.defineLazyServiceGetter(Svc, "mime",
"@mozilla.org/mime;1", "@mozilla.org/mime;1",
"nsIMIMEService"); "nsIMIMEService");
/* eslint-disable semi */
var DEFAULT_PREFERENCES = var DEFAULT_PREFERENCES =
//#include ../../../web/default_preferences.json //#include ../../../web/default_preferences.json
//#if false //#if false
"end of DEFAULT_PREFERENCES"; "end of DEFAULT_PREFERENCES"
//#endif //#endif
/* eslint-enable semi */
var PdfjsChromeUtils = { var PdfjsChromeUtils = {
// For security purposes when running remote, we restrict preferences // For security purposes when running remote, we restrict preferences