esformatter icon indicating copy to clipboard operation
esformatter copied to clipboard

ECMAScript code beautifier/formatter

Results 72 esformatter issues
Sort by recently updated
recently updated
newest added

`Emacs` anyone? We got `vi` and `atom` so it intrigues me why this editor is missing.

input and expected output: ``` js ;( foo || (bar && ipsum ) ); ``` current output: ``` js ;( foo || (bar && ipsum ) ); ``` we should...

feature
high priority

Hi, It seems to me to me that esformatter is not ignoring files listed in `.eslintignore` Does it support .eslintignore or you always need to ignore in the glob ?

feature

The ability to use `=` symbols to configure newlines is extremely useful. It would be awesome to be able to do the same for whitespace and indentations.

feature

Sorting and rearranging your code helps to keep your code organized. Sorted code makes is easier to maintain and to navigate in. Whether you group related members based on functionality...

plugins-wishlist

Can we have a preset that would satisfy `standard`? I got a few though I am still missing one. ``` whiteSpace: { after: { FunctionName: 1, FunctionReservedWord: 1, MethodDefinitionName: 1...

enhancement
feature

Hi, I am using esformatter plugin in my code and have made some settings for formatting of code. I am trying to make some settings for comments - block/line comments....

plugins-wishlist

Found no way to achieve this kind of formatting. ``` function fooBar(firstParameter, secondParameter, thirdParameter) { // code } ``` This alone makes esformatter currently unusable :(

plugins-wishlist

Aligning `var` blocks and `object` keys/values would be a useful plugin! eg: ``` js var path = require('path'); var fs = require('fs'); var crypto = require('crypto'); var obj = {...

plugins-wishlist

It would be nice to be able to do something like this: ``` js /* format off */ // this code is not touched var x = 1, y =...

plugins-wishlist