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.
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",
25 "mozilla/no-task": "error",