akalongman / akalongman/sublimetext-codeformatter

css add new line

Open
#211 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
772
Forks
128
PR merge metrics
No merged PRs in 30d

Description

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

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.