summaryrefslogtreecommitdiff
path: root/browser/experiments/test/xpcshell/.eslintrc.js
blob: 1f540a05bd6b07bc96f93ff3d0d2b24794b62b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

module.exports = {
  "extends": [
    "../../../../testing/xpcshell/xpcshell.eslintrc.js"
  ],

  "rules": {
    "no-unused-vars": ["error", {
      "vars": "all",
      "varsIgnorePattern": "^(Cc|Ci|Cr|Cu|EXPORTED_SYMBOLS)$",
      "args": "none"
    }]
  }
};