We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e093d6b commit e8084b0Copy full SHA for e8084b0
__tests__/test.js
@@ -4,3 +4,46 @@ test(
4
`Should do nothing if config is undefined`,
5
() => runTest('empty-lines-preserve')
6
);
7
+
8
+groupTest([
9
+ {
10
+ description: 'Empty lines should be cleaned before any other empty-line-before option',
11
+ options: {
12
+ 'at-rule-nested-empty-line-before': true,
13
+ 'clean-empty-lines': true,
14
+ },
15
+ cases: [
16
17
+ fixture: `
18
+ a {
19
20
21
+ @mixin foo;
22
23
24
+ }
25
+ `,
26
+ expected: `
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
+ ],
48
49
+]);
0 commit comments