sheerun / prettier-standard

Formats with Prettier and lints with ESLint+Standard! (✿◠‿◠)
MIT License
868 stars 44 forks source link

Format multiple variable declarations #55

Closed thelinuxlich closed 6 years ago

thelinuxlich commented 6 years ago

Can prettier-standard change this:

const a = "foo", b = "bar"

to this, and satisfy standard one-var rule?

const a = "foo"
const b = "bar"
sheerun commented 6 years ago

I don't think so, it just formats whitespace