You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The results of beautification are not what I expect. I'm using Atom Beautify together with https://github.com/ricardofbarros/linter-js-standard with the [JavaScript Semi-Standard Style (semistandard)](https://github.com/Flet/semistandard) style. I could not find any setting in these two to make it work as the linter expects a space in front of the parentheses.
Maybe an additional checkbox in the settings?
I'm using JS Beautify-Beautifier but i tried every other one as well, to be sure.
Input Before Beautification
This is what the code looked like before:
order (starterIndex, mainIndex)
{
return [
this.starterMenu[starterIndex], this.mainMenu[mainIndex]
];
},
Expected Output
The beautified code should have looked like this:
order (starterIndex, mainIndex) {
return [
this.starterMenu[starterIndex], this.mainMenu[mainIndex]
];
},
If you still need this and are looking for something to fill the spot that Atom left, I am using Pulsarthe successor to Atom... This package is working except for one deprecated error listed in #2605
If you don't need this anymore, can you please close this out so it's not just sitting there? Thanks
Description
The results of beautification are not what I expect. I'm using Atom Beautify together with https://github.com/ricardofbarros/linter-js-standard with the
[JavaScript Semi-Standard Style (semistandard)](https://github.com/Flet/semistandard)
style. I could not find any setting in these two to make it work as the linter expects a space in front of the parentheses.Maybe an additional checkbox in the settings?
I'm using
JS Beautify
-Beautifier but i tried every other one as well, to be sure.Input Before Beautification
This is what the code looked like before:
Expected Output
The beautified code should have looked like this:
Actual Output
The beautified code actually looked like this:
Steps to Reproduce
Atom Beautify: Beautify Editor
Checklist
I have:
so I know this is not a duplicate issue
Atom Beautify: Help Debug Editor
command in Atom and added link fordebug.md
Gist to this issueI'm wondering if i'm missing something as nobody seems to have had this problem before....
The text was updated successfully, but these errors were encountered: