silverwind
silverwind
Is this the reason why `@typescript-eslint/no-deprecated` is slow? ``` Rule | Time (ms) | Relative :--------------------------------------|----------:|--------: @typescript-eslint/no-deprecated | 1434.011 | 32.5% deprecation/deprecation | 140.861 | 3.2%
@Josh-Cena thanks for clarification, I will run my benchmark on these rules in isolation so that each rule has to bear the jsDoc loading cost. I expect the two rules...
Does Typescript support a syntax like `@ts-expect-error TS1234,TS2345`? Then you wouldn't even need this rule and `tsc` could just error if it finds a different set of error codes at...
I see, https://github.com/microsoft/TypeScript/issues/19139 it the related request.
As for custom components, `eslint-plugin-react` supports such configurations: ```js { "settings": { "react": { "formComponents": [ // Components used as alternatives to for forms, eg. "CustomForm", {"name": "SimpleForm", "formAttribute": "endpoint"},...
Have also been looking for an `luarocks upgrade ` command. Using `luarocks remove && luarocks install ` seems to be the workaround for now.
Inside boolean context, I think it could als handle `.find` and its variants exactly the same as it would `.some`.
I think the `[project]` section could be made optional. Use case is running a python tool like `yamllint` in a non-python project, so ideally my `pyproject.toml` would only hold the...
That one looks promising. Personally I only use `uv run` and `uv sync` in such projects and I think those commands are covered.