summaryrefslogtreecommitdiff
path: root/tools/mozscreenshots/.eslintrc.js
blob: 1ced58fe0863cb9ef03293b035572ba14aa2c2ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

module.exports = { // eslint-disable-line no-undef
  "extends": [
    "../../../../testing/mochitest/browser.eslintrc.js"
  ],

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