Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 610 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 610 Bytes

pre-commit-shfmt hook

pre-commit hook which runs shfmt on shell script files.

Example .pre-commit-config.yaml:

- repo: https://github.com/pecigonzalo/pre-commit-shfmt
  sha: master
  hooks:
    - id: shell-fmt
      args:
        - -i
        - "2"

Enjoy the clean code!

Variations

This pre-commit provides 3 variations of the shfmt hook.

  • id: shell-fmt: Uses the system provided shfmt binary.
  • id: shell-fmt-docker: Uses a docker image shfmt container.
  • id: shell-fmt-go: USes a Go install shfmt package.