Adaline Valentina Simonian
Adaline Valentina Simonian
Tested on Stylelint 14 `ignoreFiles` is evaluated case-sensitively on Windows, leading to a few issues downstream in vscode-stylelint. I stumbled into this while migrating from the deprecated vscode-languageserver URI API...
`jest/unbound-method` currently returns a problem for: ```js import getMethod from './get-method' const obj = { method: jest.fn(), } it('should get a method', () => { expect(getMethod(obj)).toBe(obj.method) // problem here: Avoid...
Resolves #336 Reports ranges for diagnostics. This branch is being used to test stylelint/stylelint#5725.
Per https://github.com/stylelint/vscode-stylelint/issues/338#issuecomment-974077436 We have to use custom notifications to know when document formatting and code action request handlers are registered during tests due to microsoft/vscode#135674, but these notifications aren't used...
### What problem does this feature solve? Unlike other linter integrations, we only display diagnostics for a single position. This makes for a confusing and less useful experience for users....
### What problem does this feature solve? Currently, users can't selectively auto-fix problems. They must instead either auto-fix all problems or manually fix the issue. ### How does this feature...
Related to #266 We need more end-to-end tests. Corner cases and even entire scenarios are not covered, which leads to users being the first to find bugs instead of our...
Blocked by adalinesimonian/jest-runner-vscode#23 Once coverage support is implemented by the runner we use here, we'll be able to track end-to-end test coverage using Jest. I'll probably be spending some time...
Related to #269 #265 introduces a new modular architecture with 100% unit test coverage. However, the language server still has no integration tests. Tests should be written that start up...
I've got a real head-scratcher. When resolving packages in the parent process, everything works as expected and child dependencies are resolved correctly. However, everything changes when running inside of the...