Donhector

Results 12 comments of Donhector

Try with this hook ```yaml - repo: https://github.com/commitizen-tools/commitizen rev: master hooks: - id: commitizen stages: [commit-msg] ``` Or if you don't want to add external links to your repo, then...

> @donhector I'm trying to use your hook, and it's failing because `cz` is receiving the list of my staged files instead of the `check` argument. > > ```shell >...

@lays147 Your `stages: [commit-msg]` indentation looks incorrect. Should be like this: ``` - repo: https://github.com/commitizen-tools/commitizen rev: v2.20.0 hooks: - id: commitizen stages: [commit-msg] ```

I'm also in the same boat. In my case I need a few IPs to be outside the dhcp range so I can safely use those from `kube-vip` Building on...

I was also getting the `network unreachable` error message when trying to spin up a Libvirt VM that was configured to boot from its NIC interface (_virtio_). This VM uses...

+1 In my case just using the plain Junit Parametrized.class runner @RunWith(Parameterized.class) public class MyTest extends BaseTest { // code here } My parametrized test ran (6 of them) but...

I'd love to see this PR merged! _Here's my use case:_ My cookiecutter project contains a folder with many [Ansible](https://docs.ansible.com/ansible/latest/index.html) roles. Ansible syntax itself uses Jinja2 templating (i.e. `{{ ansible-variable...

No luck here either. Windows 10 `20H2`, build number `19042.746`

I was also confused by the documentation. If you have a **.env** in your directory with no accompanying **.envrc**, you need `load_dotenv = true` in your **direnv.toml** for *direnv* to...

I'm happy with the following approach in my `.envrc` as it allows for different override levels: ```shell # Load any .envrc files all the way till / source_up # Load...