no bug - Correct some typos in the comments. a=typo-fix
[gecko.git] / accessible / tests / mochitest / .eslintrc.js
blob2ce1c5017a5c5e8d8bb8cc77cefc0f71e144657c
1 "use strict";
3 module.exports = {
4   rules: {
5     // XXX These are rules that are enabled in the recommended configuration, but
6     // disabled here due to failures when initially implemented. They should be
7     // removed (and hence enabled) at some stage.
8     "no-nested-ternary": "off",
9   },
11   overrides: [
12     {
13       files: [
14         // Bug 1602061 TODO: These tests access DOM elements via
15         // id-as-variable-name, which eslint doesn't have support for yet.
16         "attributes/test_listbox.html",
17         "treeupdate/test_ariaowns.html",
18       ],
19       rules: {
20         "no-undef": "off",
21       },
22     },
23   ],