summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-04-14 17:56:00 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-04-14 17:56:00 +0200
commit3d0a7774fdbbd7cf760a733ee85f310b9ebdace5 (patch)
tree0d3d533ad244b6fcaa6ecffab20651afefb2ad36 /elisp
parent74db8d1b2815a0dc8b440577820fb09a8c36d4ad (diff)
downloadpylint-3d0a7774fdbbd7cf760a733ee85f310b9ebdace5.tar.gz
added pylint/flymake related files
Diffstat (limited to 'elisp')
-rw-r--r--elisp/pylint-flymake.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/elisp/pylint-flymake.el b/elisp/pylint-flymake.el
new file mode 100644
index 0000000..835409e
--- /dev/null
+++ b/elisp/pylint-flymake.el
@@ -0,0 +1,11 @@
+(when (load "flymake" t)
+ (defun flymake-pylint-init ()
+ (let* ((temp-file (flymake-init-create-temp-buffer-copy
+ 'flymake-create-temp-inplace))
+ (local-file (file-relative-name
+ temp-file
+ (file-name-directory buffer-file-name))))
+ (list "epylint" (list local-file))))
+
+ (add-to-list 'flymake-allowed-file-name-masks
+ '("\\.py\\'" flymake-pylint-init)))