Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 443 Bytes

pr-9051.md

File metadata and controls

21 lines (18 loc) · 443 Bytes

Fix format on style[lang="sass"] (#9051 by @fisker)

<!-- Input -->
<style lang="sass">
.hero
  @include background-centered
</style>

<!-- Prettier stable -->
<style lang="sass">
.hero @include background-centered;
</style>

<!-- Prettier master -->
<style lang="sass">
  .hero
    @include background-centered
</style>