summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2013-02-07 10:03:30 +0100
committerGravatar Tom Willemsen2013-02-07 10:03:30 +0100
commit7f8b8daf4bb2736e240c9b7d2b619ec136f6c4d8 (patch)
tree9306874afeee0d8b4f26b42b34368bc748d9e799 /.emacs.d
parentfdb9679e2ddff78f4e737d519c20c944d78088ac (diff)
downloaddotfiles-7f8b8daf4bb2736e240c9b7d2b619ec136f6c4d8.tar.gz
dotfiles-7f8b8daf4bb2736e240c9b7d2b619ec136f6c4d8.zip
Emacs: remove my checker
I don't like the way epylint works...
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.org15
1 files changed, 1 insertions, 14 deletions
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 9070798..f4acfca 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -212,21 +212,8 @@
#+BEGIN_SRC emacs-lisp :tangle init2.el
(eval-after-load "flycheck"
'(progn
- (flycheck-declare-checker python-pycheck
- "Uses pycheck.sh to check for errors/warnings."
- :command '("pycheck.sh" source-inplace)
- :error-patterns
- '(("^\\(?1:.*\\):\\(?2:[0-9]+\\): Warning (W.*): \\(?4:.*\\)$" warning)
- ("^\\(?1:.*\\):\\(?2:[0-9]+\\): Error (E.*): \\(?4:.*\\)$" error)
- ("^\\(?1:.*\\):\\(?2:[0-9]+\\): \\[F\\] \\(?4:.*\\)$" error)
- ("^\\(?1:.*?\\):\\(?2:[0-9]+\\):\\(?:\\(?3:[0-9]+\\):\\)? \\(?4:E[0-9]+.*\\)$" error)
- ("^\\(?1:.*?\\):\\(?2:[0-9]+\\):\\(?:\\(?3:[0-9]+\\):\\)? \\(?4:W[0-9]+.*\\)$" warning)
- ("^\\(?1:.*\\):\\(?2:[0-9]+\\): \\(?4:.*\\)$" error))
- :modes 'python-mode)
-
(mapc (lambda (c) (delete c flycheck-checkers))
- '(python-flake8 python-pylint python-pyflakes))
- (add-to-list 'flycheck-checkers 'python-pycheck)))
+ '(python-pylint python-pyflakes))))
#+END_SRC
** Eshell