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

Missing newline for "Group" #97

Open
knilink opened this issue Jun 17, 2019 · 1 comment
Open

Missing newline for "Group" #97

knilink opened this issue Jun 17, 2019 · 1 comment

Comments

@knilink
Copy link

knilink commented Jun 17, 2019

intput:

.foo
  height:1px
  .bar
    height:2px

expected:

.foo {
  height: 1px;
  .bar {
    height: 2px;
  }
}

actual:

.foo {
  height: 1px;.bar {
    height: 2px;
  }
}
@knilink
Copy link
Author

knilink commented Jun 18, 2019

I think is this line

return selector + block

should be

return before + selector + block

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

No branches or pull requests

1 participant