Nicholas Rayburn
Nicholas Rayburn
#6968 is a rough implementation of this, but requires some cleanup if anybody familiar with rust wants to take that on.
I should be able to test some tonight. I think the only real scenario I know that I can test is opening a project that uses nested configs. The IntelliJ...
I'm seeing warnings when I'm expecting errors. Testing with this folder, https://github.com/oxc-project/oxc-intellij-plugin/tree/main/sandbox and viewing the package-a/index.js file. Expecting an error for the debugger, instead it's a warning. Same in VS...
I didn’t actually compare what I saw with the current version of the language server. It could be that I misinterpreted the Oxlint config and there’s actually nothing wrong. So,...
Re-tested within IntelliJ today and didn't notice any issues. Both nested config and specific config path support seems to be working. I don't think I'll be able to review the...
I think that assumes the user has that extension installed. I don’t think that’s part of the base VS Code installation. I don’t think having the icons there hurts anything,...
Gotcha, that’s definitely not how I expected it to work. I’ll see if I can find some alternative, but I would agree your current approach is better given how it...
I found something that might work, but I'm not sure of all the implications. Maybe you know. ```json "languages": [ { "id": "oxc", "filenames": [ "oxlintrc.json", "oxlint.json", ".oxlintrc.json", ".oxlint.json", ".oxlintrc"...
Looks like doing that doesn't recognize it as a JSON file anymore. So definitely not an option that way.
Made some updates to this and added some TODOs in the code. I'm not sure the TODOs are something that can easily be resolved in this PR. I think they...