third_party.pylibs.pylint.src/elisp/pylint-flymake.el

16 lines
581 B
EmacsLisp
Raw Normal View History

;; Configure flymake for python
2008-04-14 15:56:00 +00:00
(when (load "flymake" t)
(defun flymake-pylint-init ()
(let* ((temp-file (flymake-init-create-temp-buffer-copy
'flymake-create-temp-inplace))
2008-04-14 15:56:00 +00:00
(local-file (file-relative-name
temp-file
(file-name-directory buffer-file-name))))
(list "epylint" (list local-file))))
2008-04-14 15:56:00 +00:00
(add-to-list 'flymake-allowed-file-name-masks
'("\\.py\\'" flymake-pylint-init)))
;; Set as a minor mode for python
(add-hook 'python-mode-hook '(lambda () (flymake-mode)))