summaryrefslogtreecommitdiffstats
path: root/toolkit/components/passwordmgr/test/mochitest/.eslintrc.js
blob: beb8ec4738f1c6c4806e5e945fcfcbd48c6f2715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"use strict";

module.exports = {
  globals: {
    promptDone: true,
    startTest: true,
    // Make no-undef happy with our runInParent mixed environments since you
    // can't indicate a single function is a new env.
    assert: true,
    addMessageListener: true,
    sendAsyncMessage: true,
    Assert: true,
  },
  rules: {
    "no-var": "off",
  },
};