summary refs log tree commit diff
path: root/emacs.d/modules/module-python.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/modules/module-python.el')
-rw-r--r--emacs.d/modules/module-python.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs.d/modules/module-python.el b/emacs.d/modules/module-python.el
deleted file mode 100644
index 4b2a27c..0000000
--- a/emacs.d/modules/module-python.el
+++ /dev/null
@@ -1,20 +0,0 @@
-(setq python-indent-offset 2)
-(add-hook 'python-mode-hook 'eldoc-mode t)
-
-(add-to-list 'auto-mode-alist '("\\.py\\'" . python-mode))
-(add-to-list 'auto-mode-alist '("\\.BUILD\\'" . python-mode))
-(add-to-list 'auto-mode-alist '("\\.aurora\\'" . python-mode))
-
-;;; errors are reported like this:
-;;; E241:ERROR   <file name>:<line> <message>
-(flycheck-define-checker source-check
-  "A syntax checker for python source code in Source, using `check.pex'"
-  :command ("check.pex" source)
-  :error-patterns ((error line-start (id (1+ nonl)) ":ERROR" (1+ nonl) ":" line (message) line-end)
-                   (warning line-start (id (1+ nonl)) ":WARNING" (1+ nonl) ":" line (message) line-end))
-  :predicate fc/check-source-p
-  :modes (python-mode))
-
-(add-to-list 'flycheck-checkers 'source-check)
-
-(provide 'module-python)