Skip to content

Commit

Permalink
Test indentation level in multiline
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnw committed Dec 16, 2024
1 parent 592c784 commit c3835f0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions spec/parser/indentation.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,42 @@ a {
b: c;
}

<===>
================================================================================
<===> multiline_indent_level/none/input.sass
a[
b]
c: d;

<===> multiline_indent_level/none/output.css
a[b] {
c: d;
}

<===>
================================================================================
<===> multiline_indent_level/same/input.sass
a[
b]
c: d

<===> multiline_indent_level/same/output.css
a[b] {
c: d;
}

<===>
================================================================================
<===> multiline_indent_level/more/input.sass
a[
b]
c: d;

<===> multiline_indent_level/more/output.css
a[b] {
c: d;
}

<===>
================================================================================
<===> error/semicolon-multiple-same-line/input.sass
Expand Down

0 comments on commit c3835f0

Please sign in to comment.