ansible-collection-hetzner-.../Makefile
Jonas L 79f90b3881
chore: add dev config (#326)
##### SUMMARY

Add configuration files to simplify the dev setup for the project. This
will help IDEs to provide insight during development.

Pylint is already run by the ansible-test sanity checks.
2023-09-15 10:25:22 +02:00

16 lines
252 B
Makefile

SHELL := bash
.PHONY: vendor clean
vendor:
python3 scripts/vendor.py
venv:
python3 -m venv venv
venv/bin/pip install -r requirements.txt
lint: venv
venv/bin/pylint plugins
clean:
git clean -xdf \
-e tests/integration/cloud-config-hcloud.ini