blob: fe47e56d1992b405c3c04c66402391c0d4b8cbb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
((python-mode
. ((flycheck-python-pylint-executable . "env PYTHONPATH=$HOME/.guix-extra-profiles/genenetwork3/lib/python3.10/site-packages/ $HOME/.guix-extra-profiles/genenetwork3/bin/pylint")
(python-indent . 4)
(show-trailing-whitespace . 1)
(python-shell-interpreter . "$HOME/.guix-extra-profiles/genenetwork3/bin/python3")
(eval .
;; Enable Flycheck
(when (require 'flycheck nil t)
(setq elpy-modules
(delq 'elpy-module-flymake elpy-modules))
(add-hook 'elpy-mode-hook 'flycheck-mode))))))
|