question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Prettier 1.19.1 Playground link

--parser vue
--print-width 40

Input:

<template>
	<img :src="`../../../../../../../..image/${variable}.png`"/>
</template>

Output:

<template>
  <img
    :src="
      `../../../../../../../..image/${variable}.png`
    "
  />
</template>

Expected behavior:

<template>
  <img
    :src=
      "`../../../../../../../..image/${variable}.png`"
  />
</template>

or anything alike, but do not put the double quote alone on a single line.

Not sure if there is some kind of flag to set to prevent that. 😅

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
thorn0commented, Feb 14, 2020
0reactions
kissucommented, Jan 30, 2020

But I think put single TemplateLiteral and StringLiteral on the same line with attribute more readable.

Not sure of what those actually are. 😅

Output:

<template>
  <img
    :src="`../../../../../../../..image/${variable}.png`"
  />
</template>

This one is actually great tho because it keeps the double quotes on the same line and splits the beginning and ending of the tags on a new line, yes! 😁 And it’s super readable IMO. 👌🏻

The opening double quote position can be whatever tbh, but having the closing one on a new line, alone, is really ugly and actually breaks Vetur extension too…

Read more comments on GitHub >

github_iconTop Results From Across the Web

Behavior - unusual or strange
Unusual or strange behavior involves performing actions that are not normal for the person. Alternative Names. Acting strangely ...
Read more >
What is BIZARRE BEHAVIOR? definition of ...
Psychology Definition of BIZARRE BEHAVIOR: adj. a general term for behavior that is out of the ordinary or far from normal. Markedly unusual...
Read more >
25 Weird Things Humans Do Every Day, and Why
With a little contemplation, many everyday human behaviors seem truly bizarre.
Read more >
Bizarre/Psychotic Behavior
Facts about Psychotic Thinking: · Speech that makes no sense · Extremely odd or eccentric behavior · Inappropriate or complete lack of emotion...
Read more >
How to Stop Being Socially Awkward: 10 Behaviors That ...
Free E-Book: #1 Social Skill Superpower · 2. Lack or Excess of Interpersonal Space/Distance · 3. Poor General or Oral Hygiene · 4....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found