mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
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:
parent
8b1f142e1f
commit
6d19607e67
@ -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",
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user