From 7dbff2cbc1959ca4630f44e9a6755807e34c0c85 Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sun, 7 Sep 2014 19:38:24 -0300 Subject: [PATCH] See #61. Add LESS example with Mixins to test. --- examples/simple-jsbeautifyrc/test3.less | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/simple-jsbeautifyrc/test3.less diff --git a/examples/simple-jsbeautifyrc/test3.less b/examples/simple-jsbeautifyrc/test3.less new file mode 100644 index 0000000..1507524 --- /dev/null +++ b/examples/simple-jsbeautifyrc/test3.less @@ -0,0 +1,9 @@ +// Breaks (fixed now) +.mixin(@variable, @anotherVariable) { +} +// Works +.mixin(@variable; @anotherVariable) { +} +// Ok +.mixin(@variable) { +}