Skip to content
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

Using an outdated version of JS-Beautify, various bugs fixed with update #15

Closed
lucacataldo opened this issue Oct 17, 2019 · 0 comments
Closed

Comments

@lucacataldo
Copy link

This extension is still using JS-Beautify 1.7.4 whereas the latest version is 1.10.2

By simply updating this dependency a lot of bugs would be fixed.

One bug I've encountered that drives me crazy is that using grid-template-areas with input like this:

body {
	grid-template-areas:
		"aa aa aa"
		"bb bb bb";
}

Results in something like this after formatting:

body {
	grid-template-areas:"aa aa aa" "bb bb bb";
}

Issues like this have been fixed in js-beautify already so it would be ideal to have that updated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant