Skip to content

Commit

Permalink
Publish Next Version (#170)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 21, 2020
1 parent 63dcf39 commit 962271a
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
7 changes: 0 additions & 7 deletions .changeset/late-penguins-leave.md

This file was deleted.

28 changes: 0 additions & 28 deletions .changeset/tricky-pugs-cry.md

This file was deleted.

35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# @cloudfour/eslint-plugin

## 15.0.0

### Major Changes

- [`2d8f332`](https://github.com/cloudfour/eslint-config/commit/2d8f3320896e156e06720774e09fb82275443bdf) [#171](https://github.com/cloudfour/eslint-config/pull/171) Thanks [@calebeby](https://github.com/calebeby)! - Add `@cloudfour/prefer-early-return` rule (enabled by default)

This rule suggests to change code like this:

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

into:

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

### Minor Changes

- [`f4e2715`](https://github.com/cloudfour/eslint-config/commit/f4e2715df26dfc5cb57b14cf32263b78bd65e9ea) [#164](https://github.com/cloudfour/eslint-config/pull/164) Thanks [@renovate](https://github.com/apps/renovate)! - Update [`eslint-plugin-unicorn` to v22](https://github.com/sindresorhus/eslint-plugin-unicorn/releases/v22.0.0)

The new [`unicorn/import-style`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v22.0.0/docs/rules/import-style.md) rule is disabled by default, so this is not a breaking change.

## 14.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudfour/eslint-plugin",
"version": "14.0.0",
"version": "15.0.0",
"description": "Cloud Four's shareable ESLint configuration",
"author": "Cloud Four <[email protected]> (http://cloudfour.com)",
"homepage": "https://github.com/cloudfour/eslint-config",
Expand Down

0 comments on commit 962271a

Please sign in to comment.