0

I want the following effect for the import path. Can prettier do it?

import a                from "a"
import bbbbbbbbbbbbbbbb from "b"
import c                from "c"
Gama11
  • 31,714
  • 9
  • 78
  • 100
asservir
  • 53
  • 1
  • 6
  • 1
    prettier no, but look at various `Align` extensions. For example, https://marketplace.visualstudio.com/items?itemName=matthewthorning.align-vertically – Mark Jul 02 '20 at 16:09

1 Answers1

0

No, it doesn't. The default formatting for import statements is different from what you're seeking and it is not configurable.

manjunatha_d
  • 199
  • 2
  • 10