yamllint/docs/integration.rst

66 lines
1.7 KiB
ReStructuredText
Raw Normal View History

2017-07-19 05:08:04 -05:00
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 rev variable with the release version that you want, from the yamllint repo
# You can pass your custom .yamllint with args attribute.
2017-07-19 05:08:04 -05:00
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.17.0
2017-07-19 05:08:04 -05:00
hooks:
- id: yamllint
args: [-c=/path/to/.yamllint]
Integration with GitHub Actions
-------------------------------
yamllint auto-detects when it's running inside of `GitHub
2022-06-14 20:53:05 -05:00
Actions <https://github.com/features/actions>`_ and automatically uses the
suited output format to decorate code with linting errors. You can also force
the GitHub Actions output with ``yamllint --format github``.
2022-06-14 20:53:05 -05:00
An minimal example workflow using GitHub Actions:
.. code:: yaml
---
2022-06-14 20:53:05 -05:00
on: push # yamllint disable-line rule:truthy
jobs:
2022-06-14 20:53:05 -05:00
lint:
runs-on: ubuntu-latest
steps:
2022-06-14 20:53:05 -05:00
- uses: actions/checkout@v3
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint .
Integration with Arcanist
-------------------------
You can configure yamllint to run on ``arc lint``. Here is an example
``.arclint`` file that makes use of this configuration.
.. code:: json
{
"linters": {
"yamllint": {
"type": "script-and-regex",
"script-and-regex.script": "yamllint",
"script-and-regex.regex": "/^(?P<line>\\d+):(?P<offset>\\d+) +(?P<severity>warning|error) +(?P<message>.*) +\\((?P<name>.*)\\)$/m",
"include": "(\\.(yml|yaml)$)"
}
}
}