Add pyflakes3.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 09 Jan 2017 01:14:56 +0200
changeset 1450 44a6e8153899
parent 1449 61455bf4fb87
child 1451 141a71f29bd6
Add pyflakes3.
.emacs-my
--- a/.emacs-my	Sat Jan 07 01:10:02 2017 +0200
+++ b/.emacs-my	Mon Jan 09 01:14:56 2017 +0200
@@ -2921,10 +2921,16 @@
 (defvar my-python/pyflakes-args ""
   "Arguments to pass to pyflakes executable.")
 
+(defvar my-python/pyflakes3-command "pyflakes3"
+  "Command to run pyflakes3 executable.")
+(defvar my-python/pyflakes3-args ""
+  "Arguments to pass to pyflakes3 executable.")
+
 (defvar my-python/checker-alist
   '((pylint . (my-python/pylint-command my-python/pylint-args))
     (pep8 . (my-python/pep8-command my-python/pep8-args))
-    (pyflakes . (my-python/pyflakes-command my-python/pyflakes-args)))
+    (pyflakes . (my-python/pyflakes-command my-python/pyflakes-args))
+    (pyflakes3 . (my-python/pyflakes3-command my-python/pyflakes3-args)))
   "Known Python source code checkers.")
 
 (defcustom my-python/default-checker 'pyflakes