Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump eslint-config-peopledoc from 2.0.1 to 2.0.2 #54

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 9, 2020

Bumps eslint-config-peopledoc from 2.0.1 to 2.0.2.

Release notes

Sourced from eslint-config-peopledoc's releases.

v2.0.2

Fix

Don't force empty lines between single line class members (#54)

A small patch to fix annoying lint errors due to the config of the rule lines-between-class-members. With the current config of this rule, we are not allowed to write something like this:

class Foo {
  bar = true
  fizz = false
  buzz = true
}

Instead, we have to write this:

class Foo {
  bar = true
fizz = false
buzz = true
}

Which is a little bit annoying.

This PR update the config for this rule to don't force an empty line between class members that are in one single line.

Example:

class Foo {
  bar = true
  fizz = false
  buzz = true // new line is not mandatory here
toString() { // New line is mandatory here
return bar: ${this.bar}, fizz: ${this.fizz}, buzz: ${this.buzz}
}
}

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 9, 2020
@dependabot dependabot bot requested a review from a team October 9, 2020 22:07
@BlueCutOfficial BlueCutOfficial merged commit 3573f2f into master Oct 12, 2020
@BlueCutOfficial BlueCutOfficial deleted the dependabot-npm_and_yarn-eslint-config-peopledoc-2.0.2 branch October 12, 2020 15:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant