mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
15cfe23b88
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D65703 --HG-- extra : moz-landing-system : lando
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
extends: ["plugin:mozilla/mochitest-test", "plugin:mozilla/browser-test"],
|
|
|
|
rules: {
|
|
"no-unused-vars": [
|
|
"error",
|
|
{ args: "none", varsIgnorePattern: "^end_test$" },
|
|
],
|
|
},
|
|
};
|