diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-puppet.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emacs.d/custom/fcuny-puppet.el b/emacs.d/custom/fcuny-puppet.el index 5d4a44e..a189bf8 100644 --- a/emacs.d/custom/fcuny-puppet.el +++ b/emacs.d/custom/fcuny-puppet.el @@ -1,6 +1,12 @@ (use-package puppet-mode :ensure t :bind (:map puppet-mode-map - ("C-c |" . puppet-align-block))) + ("C-c |" . puppet-align-block)) + :custom + (flycheck-puppet-lint-executable "~/workspace/rcs/scripts/puppet-lint.sh") + (flycheck-puppet-parser-executable "~/workspace/rcs/scripts/puppet-parser.sh") + + (puppet-lint-command (concat "~/workspace/rcs/scripts/puppet-lint.sh" + "--log-format \"%{path}:%{line}: %{kind}: %{message} (%{check})\""))) (provide 'fcuny-puppet) |