Axel H.
Axel H.
If the command produce a certain amout of output, it makes atom freeze. You can try with: `for i in {1..3000}; do echo $i; done`, display console et execute in...
Hi ! Thanks for this plugin, it's very useful. I'm wondering if it's possible to transmit to sentry the URL which is currently processed ? In my case, I configured...
### Description Discuss and tracking breaking changes to include in the next major release. ### Possible Solution - [ ] drop all deprecation: - [ ] `--version-type` - [ ]...
As of today, it is possible to source one dotfile: ```toml [env] _.file = "my.env" ``` It is possible to source multiple dotfiles: ```toml [env] _.file = [ "my.env", "other.env",...
To enable virtualenv creation, we need to add this to the `.mise.toml`: ```toml [env] _.python.venv = { path = ".venv", create = true } ``` This form prevent from applying...
There is a [python-default-packages-file](https://mise.jdx.dev/lang/python.html#python-default-packages-file) setting allowing to install some common packages when installing a Python version. However, it is useless if you use virtualenv. I propose adding a `python_venv_default_packages_file` setting...
This PR adds a `ban-relative-imports=force-siblings` mode which is behaving the same than `ban-relative-imports=parents` for parent imports (`I252`) but also adds a `I253` which requires relative imports for siblings.
Hi! Using Flask-SuperAdmin, I've been having a lot of url name collision with automatic endpoint creation for `ModelAdmin`. To avoid collision, I wanted to prefix all URLs names with `admin.`...
This pull request add a `MAIL_CATCH_ALL` configuration parameter allowing to configure a catch-all mailbox. If set, all outgoing mails will be sent to this single mailbox. The original recipients will...
Actually it's not possible to write: ``` python from flask import g args_getter = lambda: {'user': g.current_user} nav.Bar('usermenu', ( nav.Item(_('Dashboard'), 'user.dashboard', args_getter), nav.Item(_('Profile'), 'user.profile', args_getter), nav.Item(_('Settings'), 'user.settings', args_getter), )) ```...