-
Notifications
You must be signed in to change notification settings - Fork 453
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Formatting LESS re-writes LESS... #70
Formatting LESS re-writes LESS... #70
Comments
Yeah that looks terrible. Valid or not, I don't accept that.
That is a mess. LESS support appears to be a major problem: there are not really any solid LESS beautifiers available. There are a quite few LESS issues for Atom Beautify: https://github.com/Glavin001/atom-beautify/issues?q=less If you find any other LESS beautifies that DO work for you, please let me know so I can look into migrating from PrettyDiff. |
At the moment I'm using Auto-Indent (which is misleading since it doesn't actually auto indent) which fixe the issue I have. But I'm fighting keybindings with it :( |
I have updated Before: section#photo-details {
width: 1140px;
margin: 60px auto 70px auto;
}
div.photo-view {
text-align: center;
figure {
box-shadow: 0 0 3px 1px rgba(0,0,0,0.75)
;
display : inline-block;
margin : 0 0 60px;
padding
: 0;
img {
display: block;
}
}
} After: section#photo-details {
margin: 60px auto 70px;
width : 1140px;
}
div.photo-view {
text-align: center;
figure {
box-shadow: 0 0 3px 1px rgba(0,0,0,0.75);
display : inline-block;
margin : 0 0 60px;
padding : 0;
img {
display: block;
}
}
} Will be publishing soon. Hope this works for you :). |
Published to v0.8.1 |
👍 awesome stuff |
What options need to be used to get the values of the proprieties aligned like this? box-shadow: 0 0 3px 1px rgba(0,0,0,0.75);
display : inline-block;
margin : 0 0 60px;
padding : 0; |
Just tried this package out, before formatting:
After
See how it removed the
auto
on the margin... Don't care if its valid or not, this library formats code does it not, not rewrites it for me...Also it seems to be completely broken with LESS, as you can see it left-aligned my
width
.Other issues like this occur:
A complete mess.
This is using the latest version 0.6.2
/uninstalled
The text was updated successfully, but these errors were encountered: