[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:
parent
f299473697
commit
b15de69c52
4
extensions/firefox/bootstrap.js
vendored
4
extensions/firefox/bootstrap.js
vendored
@ -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;
|
||||||
|
@ -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;
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user