mirror of
https://github.com/ivuorinen/f2b.git
synced 2026-01-26 03:13:58 +00:00
* chore(deps): update github actions and pre-commit hooks * chore(pre-commit): replace dnephin/pre-commit-golang with local hook The dnephin/pre-commit-golang repository has been sunset. Replace it with a local hook that runs golangci-lint directly using the system language. This removes the external dependency while maintaining identical linting behavior via .golangci.yml configuration. * fix: golangci-lint installation * chore: update actions, update golangci in makefile * chore: add goenv bin to path * chore: tweaks to lint tool installation * chore: actually modify pr-lint action * fix(ci): tweaks to linting, permissions * chore(ci): align golangci-lint version to v2.7.2 * chore(ci): update github actions to latest versions * fix(ci): add install-mode for golangci-lint v2.7.2 * fix(security): use go install for golangci-lint
85 lines
2.0 KiB
YAML
85 lines
2.0 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/pre-commit-config.json
|
|
# Require at least the feature set shipped with pre-commit 3.4
|
|
minimum_pre_commit_version: "3.4.0"
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
- id: check-merge-conflict
|
|
- id: check-json
|
|
- id: check-shebang-scripts-are-executable
|
|
|
|
- repo: https://github.com/pre-commit/sync-pre-commit-deps
|
|
rev: v0.0.3
|
|
hooks:
|
|
- id: sync-pre-commit-deps
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: golangci-lint
|
|
name: golangci-lint
|
|
entry: golangci-lint run
|
|
language: system
|
|
types: [go]
|
|
pass_filenames: false
|
|
|
|
- repo: https://github.com/google/yamlfmt
|
|
rev: v0.20.0
|
|
hooks:
|
|
- id: yamlfmt
|
|
|
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
|
rev: v0.47.0
|
|
hooks:
|
|
- id: markdownlint
|
|
args: [-c, .markdownlint.json, --fix]
|
|
|
|
- repo: https://github.com/tcort/markdown-link-check
|
|
rev: v3.14.2
|
|
hooks:
|
|
- id: markdown-link-check
|
|
args: [-q, -c, .markdown-link-check.json]
|
|
|
|
- repo: https://github.com/rhysd/actionlint
|
|
rev: v1.7.9
|
|
hooks:
|
|
- id: actionlint
|
|
args: ["-shellcheck="]
|
|
|
|
- repo: https://github.com/scop/pre-commit-shfmt
|
|
rev: v3.12.0-2
|
|
hooks:
|
|
- id: shfmt
|
|
|
|
- repo: https://github.com/checkmake/checkmake
|
|
rev: 0.2.2
|
|
hooks:
|
|
- id: checkmake
|
|
name: Makefile Linter
|
|
files: ^Makefile$
|
|
|
|
- repo: https://github.com/bridgecrewio/checkov.git
|
|
rev: "3.2.495"
|
|
hooks:
|
|
- id: checkov
|
|
args:
|
|
- "--quiet"
|
|
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
rev: 0.36.0
|
|
hooks:
|
|
- id: check-github-workflows
|
|
args: ["--verbose"]
|
|
|
|
- repo: https://github.com/editorconfig-checker/editorconfig-checker
|
|
rev: v3.6.0
|
|
hooks:
|
|
- id: editorconfig-checker
|