silverwind
silverwind
We've solved this now by running a private docker registry that hosts customized base images. I guess this proposal is still useful for people who don't want to invest into...
I think you can put a [`.editorconfig`](https://editorconfig.org/) in your repo and some aspects like the editor will honour it, not sure about repo viewer.
I think this issue is still open because the code view doesn't respect the configured tab-size in `.editorconfig`. The web editor itself certainly already does.
Yes, I think a user setting for default tab size is also desirable. But `.editorconfig` should have precedence when present.
> Who the heck uses a tab size of 8 by default? lol. Really surprised this isn't fixed. In addition to this, the default tab size should be 4 since...
I think in general we want a setting UI where user can set their preference, similar to what GitHub now has for tab size: https://github.com/settings/appearance That setting should overrule `.editorconfig`....
I guess we can implement `2`,`4`,`8`,`auto` options. Default being `auto` which derives from editorconfig, and possibly falls back to a default of 4 (or 8, which is still what browsers...
The modern way of doing it in node is an explicit import: ```js import {env} from 'node:process'; console.info(env.NODE_ENV); ``` Maybe the runtime code of webpack could export it? Using special...
`node-redis` does [not support `redis-sentinel`](https://github.com/redis/node-redis/issues/302), it's not an alternative if that is needed. Also, In my personal opinion, ioredis is the better engineered module.
Duplicate of https://github.com/redis/ioredis/issues/1390.