Results 37 comments of allburov

Hi! I experienced the same issue, adding `Transpose(),` before all processors helped me https://github.com/matthewwithanm/django-imagekit/issues/238#issuecomment-21569897

@clokep The Flash! Thank you for the quick response :) Oh, I see - the plugin sends Task immediately to the broker, then a worker get a task from the...

Great explanation, didn't know these details about celery! The plugin seems perfect then, it works exactly as I expected for the plugin with such functionality! :) One more question left...

@clokep thank you for the detailed explanation! I think we can add How does it work section in README.md and add a link to this issue :D It explains everything.

Hey there! We have a big mono repository with 30 components and every component has his own hooks: `mypy`, `black` and `reorder-python-imports`. We need all of them, because configuration may...

@asottile Or we can fully change output, copy it from pytest. @blueyed has show us PoC ```bash pre-commit run # or git commit -m 'Done IS-111' # . means PASSED...

@asottile you take a words from my mouth. May be we should add `collapse_skipped: True|False` (or `combine_skipped`)? And add summary information at the bottom (with the brand look). ``` mypy......................................................Passed...

Do you mean we need go back to disscussion with "universal" solution `show_statuses: failed,skipped,passed`?

But how we could show "the progress"? We could use "dot" for show progress, but if we will have 100 hooks - it can occupy two or more lines in...

w\a to hide all skipping msg from output [0001-hide-skipped-hook-from-output.txt](https://github.com/pre-commit/pre-commit/files/3732422/0001-hide-skipped-hook-from-output.txt) ```bash cd your-project wget https://github.com/pre-commit/pre-commit/files/3732422/0001-hide-skipped-hook-from-output.txt # if you use venv directory or specify you path to site-packages patch -p1 -d venv/lib/python3.7/site-packages/...