mirror of
https://opendev.org/openstack/ironic.git
synced 2026-01-11 19:57:20 +00:00
Bumps to the latest versions of the tools we use in pre-commit except for codespell which will come in a follow up. Change-Id: I61f69d914b28bb13a1183315d6181db872cca638 Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
104 lines
3 KiB
YAML
104 lines
3 KiB
YAML
---
|
|
default_language_version:
|
|
# force all unspecified python hooks to run python3
|
|
python: python3
|
|
|
|
exclude: |
|
|
(?x)^(
|
|
venv/|
|
|
.venv/|
|
|
env/|
|
|
.tox/|
|
|
build/|
|
|
dist/
|
|
)
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
# NOTE(JayF): We shouldn't modify release notes after their
|
|
# associated release. Instead, ignore these minor lint issues.
|
|
exclude: |
|
|
(?x)(
|
|
^releasenotes/notes/redfish-raid-get-drives-fix-18d46f3e7275b0ef.yaml$|
|
|
^releasenotes/notes/provide_mountpoint-58cfd25b6dd4cfde.yaml$|
|
|
^releasenotes/notes/ipmi-retries-min-command-interval-070cd7eff5eb74dd.yaml$|
|
|
^releasenotes/notes/deprecate-ibmc-9106cc3a81171738.yaml$|
|
|
^releasenotes/notes/fix-cve-2016-4985-b62abae577025365.yaml$
|
|
)
|
|
- id: mixed-line-ending
|
|
args: ['--fix', 'lf']
|
|
exclude: |
|
|
(?x)(
|
|
.*.svg$|
|
|
^releasenotes/notes/ibmc-driver-45fcf9f50ebf0193.yaml$|
|
|
)
|
|
- id: fix-byte-order-marker
|
|
- id: check-merge-conflict
|
|
- id: debug-statements
|
|
- id: check-json
|
|
files: .*\.json$
|
|
- id: check-yaml
|
|
files: .*\.(yaml|yml)$
|
|
exclude: releasenotes/.*$
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.5.5
|
|
hooks:
|
|
- id: remove-tabs
|
|
exclude: '.*\.(svg)$'
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.14.6
|
|
hooks:
|
|
- id: ruff-check
|
|
args: ['--fix', '--unsafe-fixes']
|
|
- repo: https://opendev.org/openstack/hacking
|
|
rev: 8.0.0
|
|
hooks:
|
|
- id: hacking
|
|
additional_dependencies: []
|
|
exclude: '^(doc|releasenotes|tools)/.*$'
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.6
|
|
hooks:
|
|
- id: codespell
|
|
args: [--write-changes]
|
|
- repo: https://github.com/sphinx-contrib/sphinx-lint
|
|
rev: v1.0.2
|
|
hooks:
|
|
- id: sphinx-lint
|
|
args: [--enable=default-role]
|
|
files: ^doc/|releasenotes|api-ref
|
|
- repo: https://opendev.org/openstack/bashate
|
|
rev: 2.1.1
|
|
hooks:
|
|
- id: bashate
|
|
args: ["-iE006,E044", "-eE005,E042"]
|
|
name: bashate
|
|
description: This hook runs bashate for linting shell scripts
|
|
entry: bashate
|
|
language: python
|
|
types: [shell]
|
|
- repo: https://github.com/PyCQA/bandit
|
|
rev: 1.9.1
|
|
hooks:
|
|
- id: bandit
|
|
args: ["-x", "tests/", "-n5", "-ll", "-c", "tools/bandit.yml"]
|
|
name: bandit
|
|
description: 'Bandit is a tool for finding common security issues in Python code'
|
|
entry: bandit
|
|
language: python
|
|
language_version: python3
|
|
types: [ python ]
|
|
require_serial: true
|
|
- repo: https://github.com/PyCQA/doc8
|
|
rev: v2.0.0
|
|
hooks:
|
|
- id: doc8
|
|
- repo: local
|
|
hooks:
|
|
- id: check-releasenotes
|
|
name: check-releasenotes
|
|
language: python
|
|
entry: python tools/check-releasenotes.py
|