Bug 1604730 [wpt PR 20829] - XPath: Fix context node after evaluating an expression...
[gecko.git] / browser / .eslintrc.js
blob82f9d854d63992e4dc0f1d1dfcaac91004f75e20
1 "use strict";
3 module.exports = {
4   "rules": {
5     // XXX Bug 1326071 - This should be reduced down - probably to 20 or to
6     // be removed & synced with the mozilla/recommended value.
7     "complexity": ["error", {"max": 44}],
9     // Disallow empty statements. This will report an error for:
10     // try { something(); } catch (e) {}
11     // but will not report it for:
12     // try { something(); } catch (e) { /* Silencing the error because ...*/ }
13     // which is a valid use case.
14     "no-empty": "error",
16     // Maximum depth callbacks can be nested.
17     "max-nested-callbacks": ["error", 8],
19     // Disallow adding to native types
20     "no-extend-native": "error",
22     "no-shadow": "error",
24     "mozilla/no-task": "error",
25   }