summaryrefslogtreecommitdiffstats
path: root/dom/reporting/tests/.eslintrc.js
blob: a6de8580c2b11d90bb1aedd6f17c96125694495e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";

module.exports = {
  extends: ["plugin:mozilla/mochitest-test", "plugin:mozilla/browser-test"],

  rules: {
    "no-unused-vars": [
      "error",
      { args: "none", varsIgnorePattern: "^end_test$" },
    ],
  },
};