There was an error while loading. Please reload this page.
We try and enforce most of our style rules with eslint. Here's a list of style rules which are not currently enforced automatically.
class List<T> { _values: Array<T>; constructor() { this._values = []; } }
This:
if (x == null) { ... }
Not:
if (!x) { ... }
TODO: Add more rules here ...