Micha Reiser
Micha Reiser
It would be nice if the implementation distinguishes between the coverages of different browsers as karma-coverage does. E.g. by storing the coverage reports of different browsers in different directories.
## Summary Fixes #3918 ## Test Plan ```bash cargo run --bin rome -- check ../rome-test/x.cts ``` Doesn't fail where `x.cts` contains ```ts import X from "test"; ```
## Summary This PR adds basic JSON support to the playground. It's not the deluxe version. To use JSON, it's necessary to switch to the multifile mode and change the...
## Summary This PR introduces a new `rome.requiresConfiguration` option that disables the linter and formatter if a workspace doesn't contain a `rome.json` configuration. The addition of the option is motivated...
### Description #3968 adds basic JSON support to the playground but leaves some issues unaddressed: * Discoverability: You must know that you can switch into the multifile mode and rename...
This PR introduces a new `crates` directory and moves all "product" crates into that folder. Part of #2059 **TODO** * Test Playground
Hi I'm new to ruff and started exploring its code base. I noticed during the exploration that I struggled with the many different folders. There's a root `src` folder, but...
**Describe the style change** I am working on Ruff's formatter and implementing Black's preview styles. We reviewed the `allow_empty_first_line_before_new_block_or_comment` preview style and decided not to implement it because it leads...
This is not a proposal for a specific style change but feedback related to the `parenthesize_long_type_hints`, `wrap_long_dict_values_in_parens` and `parenthesize_conditional_expressions` preview styles. I started implementing the said preview styles in Ruff....
**Describe the style change** This issue is specific to the new `hug_parens_with_braces_and_square_brackets` preview style. **Examples in the current _Black_ style** ```python self._edits.append( {"operation": "update", "id": index, "fields": list(fields), "region_fields": []}...