summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/extensions/test/xpcshell/.eslintrc.js
blob: 60d784b53c11c0aecf5cc4cffae262078af4eda6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";

module.exports = {
  env: {
    // The tests in this folder are testing based on WebExtensions, so lets
    // just define the webextensions environment here.
    webextensions: true,
    // Many parts of WebExtensions test definitions (e.g. content scripts) also
    // interact with the browser environment, so define that here as we don't
    // have an easy way to handle per-function/scope usage yet.
    browser: true,
  },
};