1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.2.3
hooks:
- id: trailing-whitespace
files: (?x)^(
config/make[.]inc[.\w]*|
examples/example\d\d[-]?\w*/.+win
)$
- id: end-of-file-fixer
files: (?x)^(
config/make[.]inc[.\w]*|
examples/example\d\d[-]?\w*/.+win
)$
- repo: git://github.com/pseewald/fprettify
sha: v0.3.3
hooks:
- id: fprettify
args: ['--indent', '2']
exclude: (?x)^(
pwscf/.*
)$
verbose: true
entry: ./test-suite/tools/fprettify-wrapper.py
|