Media queries ignore printWidth
See original GitHub issuePrettier 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:
- Created 4 years ago
- Comments:12 (10 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Let’s just keep the issue open for now.
@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