summaryrefslogtreecommitdiffstats
path: root/devtools/client/memory/test/xpcshell/.eslintrc.js
blob: f1618e83c2fdf240f264ac42b477844fb70b59c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

module.exports = {
  // Extend from the shared list of defined globals for mochitests.
  extends: "../../../../.eslintrc.xpcshell.js",
  rules: {
    "no-unused-vars": [
      "error",
      {
        vars: "local",
      },
    ],
  },
};