Skip to content

Commit af5226f

Browse files
mmozurassds
authored andcommitted
Fix Pronto pre-commit hook flags configuration
Previously specified flags in a single string, instead of an array. This led to flags not getting recognized and not used.
1 parent 30c337c commit af5226f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/default.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ PreCommit:
435435
description: 'Analyzing with pronto'
436436
required_executable: 'pronto'
437437
install_command: 'gem install pronto'
438-
flags: ['run', '--staged --exit-code']
438+
flags: ['run', '--staged', '--exit-code']
439439

440440
PuppetLint:
441441
enabled: false

0 commit comments

Comments
 (0)