akalongman / akalongman/sublimetext-codeformatter
css add new line
- Vorherrschende Sprache
- Python
- Sterne
- 772
- Forks
- 128
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
user's config:
"codeformatter_css_options": {
"syntaxes": "css,less",
"format_on_save": false,
"indent_size": 2,
"indent_char": " ",
"indent_with_tabs": false,
"selector_separator_newline": false,
"end_with_newline": false,
"newline_between_rules": false,
"eol": "\n" }
test.css:
`* {
-moz-box-sizing: border-box;
box-sizing: border-box;
}(1)
@media screen and (max-width: 680px) {
.list li {
width: 100%;
padding-bottom: 100%;
}(4)
.list_projects li {
padding-bottom: 80%;
}(5)
.employee__img {
width: 100%;
}
}(2)
@media screen and (max-width: 675px) {
.review__settings {
float: none;
text-align: center;
margin-bottom: 10px;
}(6)
.review {
text-align: center;
}
}`
issues:
1. add new lines in (1), (2), even though false settings
2. not add new lines in (4), (5), (6), if all the settings to make true
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.