Vetur/Prettier format classes in every line

Viewed 230

I have 2 document formats for .vue files: Vetur and Prettier.

Both, formated my attr class like:

class="
  inline-block
  py-5
  px-2
  text-gray-300 text-sm
  uppercase
  font-light
"

But I prefer:

class="inline-block py-5 px-2 text-gray-300 text-sm uppercase font-light"

I changed the Width

"prettier.printWidth": 300

But same result

How can I disable that option?

1 Answers

After read #10918

The only solution that works was a downgrade to v6.3.2

Related