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

Add autofix to declaration-block-semicolon-newline-after #3545

Merged
merged 1 commit into from Aug 19, 2018

Conversation

ota-meshi
Copy link
Member

Which issue, if any, is this issue related to?

closes #3544

Is there anything in the PR that needs further explanation?

ex.

  • option: always***

    code:

    a { color: pink;top: 0; }

    fixed:

    a { color: pink;
    top: 0; }
  • option: never-multi-line

    code:

    a {
      color: pink;
      top: 0;
    }

    fixed:

    a {
      color: pink;top: 0;
    }

Copy link
Member

@jeddy3 jeddy3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@ntwb ntwb merged commit de84524 into master Aug 19, 2018
@ntwb ntwb deleted the add-autofix/declaration-block-semicolon-newline-after branch August 19, 2018 07:07
@ntwb
Copy link
Member

ntwb commented Aug 19, 2018

Changelog updated in: b1cf440

Added: declaration-block-semicolon-newline-after autofix (#3545).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Add autofix to declaration-block-semicolon-newline-after
3 participants