summary refs log tree commit diff
path: root/emacs.d/modules/module-puppet.el
blob: 150ce19554cdfe033a1944e4d99413577435d5a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(require 'config-package)

;; To setup flycheck in the GCP's repository:
;; ((puppet-mode
;;  (flycheck-puppet-lint-rc .(expand-file-name "gcp-pupet-manifests/.puppet-lint.rc") fcuny/path-twitter-git)))

(use-package puppet-mode
  :mode ("\\.pp\\'" . puppet-mode)

  :init (add-hook 'puppet-mode-hook 'flycheck-mode))
  ;; :config
  ;; (setq flycheck-puppet-lint-rc "/Users/fcuny/workspace/svn.twitter.biz/twitter-ops/utilities/puppet/.puppet-lint.rc"))

(provide 'module-puppet)