-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Anantachai Saothong (Manta)
committed
Apr 7, 2017
1 parent
0415abb
commit 31c9d13
Showing
21 changed files
with
203 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
spec/option-insert-new-line-between-else-if-false/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertNewLineBetweenElseIf": false, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if true | ||
display block | ||
else if false | ||
display inline | ||
else | ||
display none |
7 changes: 7 additions & 0 deletions
7
spec/option-insert-new-line-between-else-if-false/output.styl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
if (true) { | ||
display: block; | ||
} else if (false) { | ||
display: inline; | ||
} else { | ||
display: none; | ||
} |
15 changes: 15 additions & 0 deletions
15
spec/option-insert-new-line-between-else-if-true/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertNewLineBetweenElseIf": true, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
if true | ||
display block | ||
else if false | ||
display inline | ||
else | ||
display none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
if (true) { | ||
display: block; | ||
} | ||
else if (false) { | ||
display: inline; | ||
} | ||
else { | ||
display: none; | ||
} |
14 changes: 14 additions & 0 deletions
14
spec/option-insert-new-line-between-selector-false/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
4 changes: 4 additions & 0 deletions
4
spec/option-insert-new-line-between-selector-false/input.styl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
body,.class1,.class2:hover | ||
display none | ||
.class3,input[type=text] | ||
display block |
7 changes: 7 additions & 0 deletions
7
spec/option-insert-new-line-between-selector-false/output.styl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
body, .class1, .class2:hover { | ||
display: none; | ||
|
||
.class3, input[type=text] { | ||
display: block; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
spec/option-insert-space-after-comment-false/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": false, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
//comment-1 | ||
body//comment-2 | ||
display none//comment-3 | ||
|
||
/*comment-4*/ | ||
.class1/*comment-5*/ | ||
display none/*comment-6*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//comment-1 | ||
body { //comment-2 | ||
display: none; //comment-3 | ||
} | ||
|
||
/*comment-4*/ | ||
.class1 { /*comment-5*/ | ||
display: none; /*comment-6*/ | ||
} |
14 changes: 14 additions & 0 deletions
14
spec/option-insert-space-after-comment-true/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
//comment-1 | ||
body//comment-2 | ||
display none//comment-3 | ||
|
||
/*comment-4*/ | ||
.class1/*comment-5*/ | ||
display none/*comment-6*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// comment-1 | ||
body { // comment-2 | ||
display: none; // comment-3 | ||
} | ||
|
||
/* comment-4 */ | ||
.class1 { /* comment-5 */ | ||
display: none; /* comment-6 */ | ||
} |
14 changes: 14 additions & 0 deletions
14
spec/option-insert-space-before-comment-false/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertSpaceBeforeComments": false, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
//comment-1 | ||
body//comment-2 | ||
display none//comment-3 | ||
|
||
/*comment-4*/ | ||
.class1/*comment-5*/ | ||
display none/*comment-6*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// comment-1 | ||
body {// comment-2 | ||
display: none;// comment-3 | ||
} | ||
|
||
/* comment-4 */ | ||
.class1 {/* comment-5 */ | ||
display: none;/* comment-6 */ | ||
} |
14 changes: 14 additions & 0 deletions
14
spec/option-insert-space-before-comment-true/formattingOptions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"insertColons": true, | ||
"insertSemicolons": true, | ||
"insertBraces": true, | ||
"insertNewLineBetweenGroups": 1, | ||
"insertNewLineBetweenSelectors": false, | ||
"insertSpaceBeforeComments": true, | ||
"insertSpaceAfterComments": true, | ||
"indentChar": "\t", | ||
"newLineChar": "\r\n", | ||
"sortProperties": false, | ||
"alwaysUseImport": false, | ||
"alwaysUseNot": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
//comment-1 | ||
body//comment-2 | ||
display none//comment-3 | ||
|
||
/*comment-4*/ | ||
.class1/*comment-5*/ | ||
display none/*comment-6*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// comment-1 | ||
body { // comment-2 | ||
display: none; // comment-3 | ||
} | ||
|
||
/* comment-4 */ | ||
.class1 { /* comment-5 */ | ||
display: none; /* comment-6 */ | ||
} |