Skip to content

v15.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Oct 17:51
· 408 commits to main since this release
962271a

Major Changes

  • 2d8f332 #171 Thanks @calebeby! - Add @cloudfour/prefer-early-return rule (enabled by default)

    This rule suggests to change code like this:

    function a() {
      if (_) {
        a();
        b();
        c();
      }
    }

    into:

    function a() {
      if (!_) return;
      a();
      b();
      c();
    }

Minor Changes