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.

Media queries ignore printWidth

See original GitHub issue

Prettier 1.18.2 Playground link

Scenario 1

Input:

<A
  a={`
	${b} is a constant. ${b} is a constant.${b} is a constant.${b} is a constant.${b} is a constant.
    ${b} is a constant. 
  `}
>
</A>

Output:

<A
  a={`
	${b} is a constant. ${b} is a constant.${b} is a constant.${b} is a constant.${b} is a constant.
    ${b} is a constant. 
  `}
></A>

Expected behavior: As expected.

Scenario 2

Input:

const Graphic = styled.section`
  @media only screen and
  (min-device-width: 768px) and
  (max-device-width: 1024px) {
    overflow-x: scroll;
    overflow-y: hidden;
  }
`

Output:

const Graphic = styled.section`
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    overflow-x: scroll;
    overflow-y: hidden;
  }
`

Expected behavior: Should have left it multi-line

Why is there an inconsistent breaking of template literals? When does it break and when not? Referring to this PR - https://github.com/prettier/prettier/pull/5979, what is meant by “simple template literals”?

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:12 (10 by maintainers)

github_iconTop GitHub Comments

1reaction
thorn0commented, Oct 29, 2019

Let’s just keep the issue open for now.

1reaction
lydellcommented, Oct 28, 2019

@algomaster99 We recommend turning off all rules that conflict with Prettier. See: https://prettier.io/docs/en/integrating-with-linters.html

max-len can be used with Prettier, but I wouldn’t personally recommend it. You’ll always be fighting with it. See: https://github.com/prettier/eslint-config-prettier#max-len

Read more comments on GitHub >

github_iconTop Results From Across the Web

Media Queries ignored - css - Stack Overflow
Your query says that the media type is screen and min-width is 320px. This is true for a desktop, so the css applies...
Read more >
media - CSS: Cascading Style Sheets - MDN Web Docs
With it, you specify a media query and a block of CSS to apply to the ... ignoring the remainder of the query,...
Read more >
only Keyword | Comm 328: Responsive Web Design
The only keyword is intended to ensure that older browsers that don't understand the entire media query line will ignore the whole thing...
Read more >
epl printer emulator
With its compact size, common media specifications and support for ZPL and EPL ... 09") Print Width - 152 mm/s Mono - 203...
Read more >
Working with JavaScript Media Queries - CSS-Tricks
We need to call the event handler function manually and pass the media query as the argument. Pug; SCSS; JS. Result; Skip Results...
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