Bug 1330791 - Enable the no-irregular-whitespace rule for /services and fix the associated errors. r=markh

MozReview-Commit-ID: 5rledRlxUl2

--HG--
extra : rebase_source : 4612dacb80a5f11041fccc3a3edee6b121cdd2ff
This commit is contained in:
Jared Wein 2017-01-12 17:27:34 -05:00
parent 8b1f142e1f
commit 6d19607e67
3 changed files with 2 additions and 3 deletions

View File

@ -15,7 +15,6 @@ module.exports = {
"no-empty": "warn",
"no-ex-assign": "warn",
"no-func-assign": "warn",
"no-irregular-whitespace": "warn",
"no-native-reassign": "warn",
"no-nested-ternary": "warn",
"no-octal": "warn",

View File

@ -91,5 +91,5 @@ pref("services.sync.validation.interval", 86400); // 24 hours in seconds
// and you meet the maxRecord checks.
pref("services.sync.validation.percentageChance", 10);
// We won't validate an engine if it has more than this many records on the server.
// We won't validate an engine if it has more than this many records on the server.
pref("services.sync.validation.maxRecords", 100);

View File

@ -822,7 +822,7 @@ var TPS = {
let ajv = new ns.Ajv({ async: "co*" });
this.pingValidator = ajv.compile(schema);
} catch (e) {
this.DumpError(`Failed to load ping schema and AJV relative to "${testFile}".`, e);
this.DumpError(`Failed to load ping schema and AJV relative to "${testFile}".`, e);
}
},