Slawek Bierwiaczonek

Results 28 comments of Slawek Bierwiaczonek

True, sorry I haven't noticed that. [Pretty-yaml](https://github.com/mk-fg/pretty-yaml) is very simple and seams to not support going thru all the directories in search for `*.yaml`, `*.yml` files. On top of that...

Yes I noticed that here in code is used `true` and `false` so this along with inability to use it recursively disqualifies pretty-yaml as a potential package to use. I...

When it's a part of CI it don't make much of a difference to us, it's just matter of using `actions/setup-node@v4` or `actions/setup-go@v5` instead of `actions/setup-python@v5`. On the other hand...

What is the final decision on that matter ? Will we use Prettier ?

This is how it looks like while it was run without any additional options with just `npx prettier . --write`

Have you seen changes in PR #2018 ?

@TreyWW This issue is outdated since PR #270 have resolved that problem. Unfortunately latest PR #362 have broke that functionality since it wasn't caught in tests and I just discovered...

@TreyWW hmm basically it's all caused by `CustomUserMiddleware` ```py if request.user.is_authenticated: request.user = User.objects.get(pk=request.user.pk) ``` is causing 2nd query because `AuthenticationMiddleware` is already handling that. Removing `"backend.models.CustomUserMiddleware"` from MIDDLEWARE in...

I think that since it's open source project it will be good to have a choice.

What's the reason for that ? Both of them have the same query as far as I remember (can't check it now) and from what I've checked functionality is the...