DetachHead

Results 929 comments of DetachHead

@jakemac53 thanks! is there an issue tracking the progress of the new library? if so i can close this issue

i get that, thought imo that's an edge case you can easily work around by explicitly specifying the generic: ```dart checkThat(1).equals(''); ```

i came up with this workaround which seems to work well in vscode: ```jsonc // .vscode/settings.json { "python.testing.pytestArgs": ["-n", "auto"] } ``` ```py # conftest.py @hookimpl(wrapper=True) def pytest_xdist_auto_num_workers(config: Config) ->...

that's odd. what version of xdist are you using? for me it just returns an `int`. i'm on 3.5.0

ah, it sounds like you're using `@hookimpl(hookwrapper=True)` instead of `@hookimpl(wrapper=True)`. `wrapper` is the new one and `hookwrapper` is deprecated. https://pluggy.readthedocs.io/en/stable/index.html#wrappers

i meant when applying the quick fix from vscode (or in this case the playground): ![image](https://github.com/astral-sh/ruff/assets/57028336/4cfc2f16-d627-4568-8439-831442bc0f84) that only applies one quick fix at a time. IMO, since f strings are...

[the documentation](https://app-config.dev/guide/testing/jest.html) currently says that > In Node.js, App Config might work without any configuration. however this doesn't seem to be the case. as far as i can tell, it's...

unfortunately that doesn't seem to work due to https://github.com/microsoft/vscode-black-formatter/issues/251#issuecomment-1595019087 :(

yeah, ideally you'd be able to commit this config but you can't because those paths will be different for each user