summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/browser/.eslintrc.js
blob: f2b9e072f9de4a4fc4c938a6435c8cadffb495a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict";

module.exports = {
  env: {
    webextensions: true,
  },

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