Benoit Verret

Results 8 comments of Benoit Verret
trafficstars

> If it's the first, I could see a flow where I build in a sign-in flow on the website that generates a token that the user could then use...

Got the same issues here that I solve. When we build we tell the mecanism to look for production variables, `yarn build --mode production`. If the build have the good...

There is the modification if you need your SSH Key to **log in to your server**: ```diff - name: Push to server uses: appleboy/ssh-action@master with: host: ${{ secrets.SERVER_IP }} port:...

Here you are for a simple solution tant `lambda n: n`: ```python id = factory.Sequence(int) ``` It will call `int` as a function: ```python str_x = "1" int_x = int(str_x)...

I was looking to replace my `flake8` plugins list with `ruff` and there's 2 plugins I couldn't replace yet: - `flake8-cognitive-complexity` - `flake8-expression-complexity` Hope to see them implemented in ruff.

> Also in the same terms it would be nice to implement [`flake8-cohesion`](https://github.com/sasanjac/flake8-cohesion) Didn't know that one, thanks for sharing ;)

> Are you planning to use these rules alongside the McCabe complexity rule or instead of it? I always include cyclomatic + expression + cognitive. Here a quick example which...

> I’m still a little torn on whether to include it. It will e.g. add complexity that we’d have to respect in the autoformatter in the future. I understand your...