summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/.eslintrc.js
blob: 2ce1c5017a5c5e8d8bb8cc77cefc0f71e144657c (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
"use strict";

module.exports = {
  rules: {
    // XXX These are rules that are enabled in the recommended configuration, but
    // disabled here due to failures when initially implemented. They should be
    // removed (and hence enabled) at some stage.
    "no-nested-ternary": "off",
  },

  overrides: [
    {
      files: [
        // Bug 1602061 TODO: These tests access DOM elements via
        // id-as-variable-name, which eslint doesn't have support for yet.
        "attributes/test_listbox.html",
        "treeupdate/test_ariaowns.html",
      ],
      rules: {
        "no-undef": "off",
      },
    },
  ],
};