Bug 1472840 [wpt PR 11759] - [css-logical] Implement flow-relative margin, padding...
[gecko.git] / accessible / .eslintrc.js
blob817c02b8d850eca2b55dcb5fc30d4f2e3c78437b
1 "use strict";
3 module.exports = {
4   "rules": {
5     // Warn about cyclomatic complexity in functions.
6     "complexity": ["error", 47],
8     // XXX These are rules that are enabled in the recommended configuration, but
9     // disabled here due to failures when initially implemented. They should be
10     // removed (and hence enabled) at some stage.
11     "consistent-return": "off",
12     "no-unexpected-multiline": "off",
13     "no-unsafe-finally": "off",
14     "no-useless-call": "off",
15   }