86c6b3eca8
The correct gitlab url ends in .git. Change-Id: I504512eb9e4ff8f21c8de1146528352926df2b3d Closes-Bug: #1836761
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
---
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.2.3
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: mixed-line-ending
|
|
- id: check-byte-order-marker
|
|
- id: check-executables-have-shebangs
|
|
- id: check-merge-conflict
|
|
- id: debug-statements
|
|
- id: check-yaml
|
|
files: .*\.(yaml|yml)$
|
|
- repo: https://gitlab.com/pycqa/flake8.git
|
|
rev: '3.7.7'
|
|
hooks:
|
|
- id: flake8
|
|
- repo: https://github.com/ansible/ansible-lint
|
|
rev: v4.1.0a0
|
|
hooks:
|
|
- id: ansible-lint
|
|
files: \.(yaml|yml)$
|
|
exclude: ^workbooks/
|
|
entry: ansible-lint --force-color -v
|
|
- repo: https://github.com/openstack-dev/bashate.git
|
|
rev: 0.6.0
|
|
hooks:
|
|
- id: bashate
|
|
entry: bashate --error . --verbose --ignore=E006,E040,E042
|
|
# Run bashate check for all bash scripts
|
|
# Ignores the following rules:
|
|
# E006: Line longer than 79 columns (as many scripts use jinja
|
|
# templating, this is very difficult)
|
|
# E040: Syntax error determined using `bash -n` (as many scripts
|
|
# use jinja templating, this will often fail and the syntax
|
|
# error will be discovered in execution anyway)
|