Brook Jordan

Results 24 comments of Brook Jordan

I would love to bump this up. As Typescript rises in popularity, new developers are expecting the same kind of help with CSS. Getting these kinds of typings in eslint...

~Is this being looked into? A version of `@cypress/browserify-preprocessor` with the vulnerable `glob-parent` version is being used.~ I see that @renovate-bot has attempted to fix this with #519

I would love for CSS Colors Level 4 to be supported. I have so many printed strings all over the place now just to get this working. Using `rgb(0 0...

Working in Firefox and Chrome: ```css body { color: rgb(0 0 0 / 0.5); /* and */ background-color: rgb(0, 0, 0, 0.5); } ```

This is a feature I would also love to have. Right now my swagger files are littered with TODOs indicating identical schemas.

Not ideal, but anyone hitting these issues may be able to resolve the react types for now. That is, in your package.json, add: ```json "resolutions": { "@types/react": "^18.0.21" }, ```

Would love to see this implemented to reduce developer confusion.

I can’t right now, but if I get a chance I’ll be sure to have a look! I’ve never touched any of this code, so it’d take a while.

@cvlmtg any luck here? I’m starting to hit into the same issues.

To expand upon that, this: ```css .box { border-radius: 20px; border-top-left-radius: 10px 30px; border-bottom-right-radius: 10px 40px; } ``` is currently minified to: ```css .box{border-radius:20px;border-top-left-radius:10px 30px;border-bottom-right-radius:10px 40px} ``` and could be...