summaryrefslogtreecommitdiff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-09-05 13:19:49 +0300
committerLars Wirzenius <liw@liw.fi>2020-09-05 13:19:49 +0300
commitf015dd1ac9ea85f0aef75b7d1b32de8fadab2d38 (patch)
treeff48516cd9fee9275c9d44ad5677c228ad9e8ee9 /emacs.d/init.el
parentf50277bce9d34bff086fe99ad471744b97aa9951 (diff)
downloadliw-dot-files-f015dd1ac9ea85f0aef75b7d1b32de8fadab2d38.tar.gz
emacs: disable flycheck use of pylint
Diffstat (limited to 'emacs.d/init.el')
-rw-r--r--emacs.d/init.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 8ac0451..9b1f2b8 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -66,7 +66,10 @@
:config
(setq rust-format-on-save t))
-(use-package flycheck)
+(use-package flycheck
+ :config
+ (setq-default flycheck-disabled-checkers '(python-pylint)))
+
(use-package flycheck-rust)
;;(with-eval-after-load 'rust-mode
@@ -77,7 +80,6 @@
'(add-hook 'flycheck-mode-hook 'flycheck-color-mode-line-mode))
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; UI tweaks.