BnGx
BnGx
Hi chubin, Why the multiple search terms feature is now disabled? It would be very nice to filter the results using the query `~term1~term2~term3` to achieve term1 AND term2 AND...
I suppose it is necessary to represent a static schema in the generated document. So the document should appear using the passed Marshmallow schema in the _response_ function. Instead serialization...
After a series of tests and evaluations I think it is more appropriate to use a dedicated _serialization_schema_ to give more flexibility to the code and avoid interacting with the...
It might be a good idea to edit _ArgumentsMixin_ class as following: ```python3 from functools import partial class ArgumentsMixin: def kwarguments(self): return partial(self.arguments, as_kwargs=True) ```
Currently the hooks are executed in alphabetical order, however one of the following options would instead be appropriate: - Leave the definition order unchanged (including `interactive` hooks and those extended...
As I see it, implementing a `priority` option in Lefthook would be a better approach for several reasons: - **Enhanced Flexibility and Precision**: A priority-based system would enable developers to...
I'll answer you by analyzing your answer step by step: > Do you expect commands with the same priority to be run in parallel? No because I can use the...
If it were possible, it would be **perfect** (and great!!!!) to run `review` command after `create` but before `migrate` and `seed`. However, in order not to distort the current flow...
I specify that I was referring to the [ascending priority order](https://www.javatpoint.com/ds-priority-queue#:~:text=Ascending%20order%20priority%20queue%3A%20In,higher%20priority%20in%20a%20priority.) (0 highest priority, 99 lowest priority), therefore a command with priority 1 is executed before a command with priority...
@mrexox I agree that the integration of the priority option should be explicit. I think the choice of 0 rather than 50 can be addressed simply by customizing the configuration....