Zeckie
Zeckie
### Describe the problem, ie expected/actual result (if it's not blatantly obvious) When there are changes near baselined errors, the current algorithm used to match errors to the baseline sometimes...
TLDR: Provide a way to have stubs that don't contain everything in the package. Currently, when creating stubs, you have to create stubs for everything under the top level (including...
Currently, `[[tool.mypy.overrides]]` in `pyproject.toml` needs to specify what the overrides apply to using `module`. Would be useful to be able to specify `path` instead (eg. to apply a different configuration...
### Describe the problem, ie expected/actual result (if it's not blatantly obvious) Basedmypy isn't able to handle baseline matching when being run with a different working directory. ``` C:\myproject>mypy ....
Black usually formats pyi files (stubs) differently to how it formats py files. However, due to the way Pydev calls Black, it currently treats both file formats the same. Update...
RED doesn't correctly validate that keywords used in `Test Setup` and `Test Teardown` in a suite initialization file (\_\_init\_\_.robot) need to be defined in the test case file, not the...
```robotframework *** Keywords *** Example [Arguments] ${keyword} Run Keywords ${keyword} ``` ```toml [tool.robotidy] configure = ["RenameKeywords:enabled=True"] ``` After updating to version 3.3.2, robotidy is adding 5 spaces before between `Run...
* safety version: 2.3.5 * Python version: 3.12 * Operating System: Windows ### Description Running `safety check` often results in the error `Check your network connection, the request timed out.`....
Currently D104 (Missing docstring in public package) applies even to empty files. `__init__.py` are often empty and if they are, it would be great to not report an error for...
Currently, when the output is piped (whether to an application or file), it seems as though `--color` is ignored. We have a script running in CI that runs robotidy, and...