Pedr Browne

Results 115 comments of Pedr Browne

Fwiw SassDoc is great for documenting functions and mixins but doesn't support documenting classes or placeholder though.

I think we are talking about two separate issues: 1. If the inner flexbox has 'align-items: center;` then the fix will not work. You should add that as a note....

I think that there are many cases when judiciously placed brackets add meaning. For example: ``` const remainingImageCount = totalImageCount - (currentIndex + 1); ``` vs ``` const remainingImageCount =...

@jlongster Of course. Sorry for the noise.

Here is another simple example to add to the discussion: Before ``` const r = (a * b + c) + (x * y + z); ``` After: ``` const...

I absolutely understand the philosophy behind prettier, but this instance I think its a clear case of pedantry over pragmatism. When it comes to bracket removal prettier is making code...

@cassianomon What @duailibe means is that the process doesn't involve taking your code and selectively removing parts. It involves converting it all into an AST, then printing out your code...

Here is a simple example (from earlier in the thread) which I think is a good one: **Prettier 1.12.1** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuc0DOMAEAnTBeTACgENMAqTAI0wGpMwBKWogD3MwE9mAvBgbhAAaEBAAOMAJbpkoYtmwQA7gAU5CNMhDEAbhAkATISErZiYANZwYAZVFmJUAObIY2AK5xhDtHGwxlpo4AtsTIAGbEADY+wgBWaCwAQqYWVtbEQXAAMg5w4VExIHbYPtialMSUHJHQRqLYDjAA6gYwABbIABwADML1ED5NpqKa9XCl2nnC2HAAjm4SMwHEwaFIEdGeID5BEi7uW2gOjpFwAIpuEPD5m8IwlS367cgATHemEpHHAMIQQSGaKDQKYgNw+AAqlQ06wKcAAvnCgA) **Input:** ```jsx const r = (a * b +...

I tried that. The only thing that is output from this lib is: > starting server using command "npm run develop" and when url "https://localhost:8000" is responding running tests using...