Sebastian Kreft

Results 68 issues of Sebastian Kreft

The `check` and `fix` commands should skip the `build` folder, where the compiled files are placed. Version: 2.0.2

type: feature request

Since a couple of weeks we have been seeing repeatedly that the action does not report some violations while there are some in the code. ``` $ golangci-lint --version golangci-lint...

question

## Status **READY** ## Description Without this file, one would get the following error when `implicit_reexport` is disabled. ``` path:10: error: Module has no attribute "camelize"; maybe "decamelize"? [attr-defined] ```...

## Describe the bug When running `reg-cli` with a bunch of rendered images I get an `UnhandledRejection` error and the application freezes. I realized that empty pngs trigger this, which...

bug

The code to compute the linear backoff and exponential backoff has some issues, as it does not wait in the first attempt, this is because `currentRetryAttempt` is initially set to...

is there any change to add support for the `Retry-After` header (https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After). This is specially useful to deal with quota exceeded errors (429). Probably an upper bound should be added,...

enhancement

The `raxConfig` requires an `instance` field, which if not set will default to the default axios instance, however that's not what one wants when attaching it to a non-default instance....

The following file ```py from math import (exp as exponential) print(exponential(1)) ``` executes perfectly but `fixit` fails with the following error: ``` Encountered the following error while parsing source code...

## Summary The metadata wrapper is not needed in case there are no cst_rules. With this change we improve the following command on LibCST from 10.69 seconds to 5.69 seconds....

CLA Signed

## Summary Tokenizing a file is quite slow, as the module is implemented in pure python. So, instead of always tokenizing the files when use_noqa is set, we will first...

CLA Signed