dannyconnell / vscode-split-html-attributes

VSCode extension for splitting HTML attributes onto separate lines

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Split format with objects inside React properties

diego3g opened this issue · comments

While working with React there are sometimes we need to attach objects to tags properties/attributes and when i try to split the attributes with the extension it converts this:

<Button size="sm" fontSize="xs" width="4" bgColor="gray.700" _hover={{ bgColor: 'gray.500' }}>2</Button>

To:

<Button
  size="sm"
  fontSize="xs"
  width="4"
  bgColor="gray.700"
  _hover={{
  bgColor:
  'gray.500'
  }}>2</Button
>

While, for me, the best approach should be:

<Button
  size="sm"
  fontSize="xs"
  width="4"
  bgColor="gray.700"
  _hover={{
    bgColor: 'gray.500'
  }}
>
  2
</Button>