You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
472 B
ReStructuredText
18 lines
472 B
ReStructuredText
Integration with other software
|
|
===============================
|
|
|
|
Integration with pre-commit
|
|
---------------------------
|
|
|
|
You can integrate yamllint in `pre-commit <http://pre-commit.com/>`_ tool.
|
|
Here is an example, to add in your .pre-commit-config.yaml
|
|
|
|
.. code:: yaml
|
|
|
|
---
|
|
# Update the sha variable with the release version that you want, from the yamllint repo
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
sha: v1.8.1
|
|
hooks:
|
|
- id: yamllint
|