summaryrefslogtreecommitdiffstats
path: root/dom/quota/test/modules/content/.eslintrc.js
blob: f4482935e5e19f0d6630316e938ab4c0386da28b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

"use strict";

module.exports = {
  overrides: [
    {
      files: [
        "Assert.js",
        "ModuleLoader.js",
        "StorageUtils.js",
        "Utils.js",
        "UtilsParent.js",
        "WorkerDriver.js",
      ],
      parserOptions: {
        sourceType: "module",
      },
    },
  ],
};