Jane Lewis
Jane Lewis
Fixes https://github.com/space-wizards/RobustToolbox/issues/2388 When creating the OpenAL context, we now hint that we may create up to 512 audio sources at once (512 was chose because it was double the previous...
I have an Electron app that uses Neon to generate bindings for some Rust libraries. I have been trying to debug my application using `rust-lldb`, but I cannot set breakpoints...
Fixes #6611 ## Summary This lint rule spots comments that are _intended_ to suppress or enable the formatter, but will be ignored by the Ruff formatter. We borrow some functions...
OS: Pop!_OS 22.04 LTS Desktop Environment: GNOME 42.5 Inky version: 0.13.0 and 0.14.0 (I tested both) When opening or saving a file inside the home directory `/home//`, Inky is unable...
This is a tracking issue for supporting dynamic client settings in workspaces. Right now, client settings are created during server initialization and remain static while the server runs. This causes...
In https://github.com/astral-sh/ruff/pull/10652, we had to implement `Clone` for `LinterSettings` and all sub-settings so that the `source.organizeImports` resolver could clone the settings from a reference and then modify `rules` to `[I001,...
VS Code configuration like the following will work as expected: ```json { "[python]": { "editor.codeActionsOnSave": { "source.organizeImports": "explicit", }, } } ``` but this configuration: ```json { "[python]": { "editor.codeActionsOnSave":...
## Summary Closes https://github.com/astral-sh/ruff/issues/10858. `ruff server` now supports `*.ipynb` (aka Jupyter Notebook) files. Extensive internal changes have been made to facilitate this, which I've done some work to contextualize with...
When a workspace folder doesn't have any configuration available, `ruff server` should try `find_user_settings_toml()` as a fallback. This would try reading `~/.config/ruff/.ruff.toml`, `~/.config/ruff/ruff.toml` and `~/.config/ruff/pyproject.toml` on Linux.