1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

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.
This commit is contained in:
Jonas L 2023-09-15 10:25:22 +02:00 committed by GitHub
parent 2ab0ef6177
commit 79f90b3881
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View file

@ -4,6 +4,13 @@ SHELL := bash
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