Bug 1443120 [wpt PR 9805] - [css-text] Add lang=ja in css3-text-line-break-jazh tests...
[gecko.git] / browser / .eslintrc.js
blob40716ff8f587479e3c0a43f5f03821cce40b7a0c
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-mixed-spaces-and-tabs": "error",
23     "no-shadow": "error",
25     "mozilla/no-task": "error",
26   }