summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test/.eslintrc.js
blob: e283e384ba7d51b20bbb208e775a8da0bd5c920a (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
25
26
27
28
"use strict";

module.exports = {
  // Globals from mediasource.js. We use false to indicate they should not
  // be overwritten in scripts.
  globals: {
    addMSEPrefs: false,
    fetchAndLoad: false,
    fetchAndLoadAsync: false,
    fetchWithXHR: false,
    logEvents: false,
    loadSegment: false,
    must_not_reject: false,
    must_not_throw: false,
    must_reject: false,
    must_throw: false,
    once: false,
    range: false,
    runWithMSE: false,
    wait: false,
    waitUntilTime: false,
  },
  // Use const/let instead of var for tighter scoping, avoiding redeclaration
  rules: {
    "no-var": "error",
    "prefer-const": "error",
  },
};