Skip to content

Commit

Permalink
tweak(flymake): activate more checkers for Python
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 23, 2023
1 parent a45e026 commit 36dac31
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion modules/me-checkers.el
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@

(use-package flymake-collection
:straight t
:hook (minemacs-after-startup . flymake-collection-hook-setup))
:hook (minemacs-after-startup . flymake-collection-hook-setup)
:config
;; Activate more checkers for Python
(setf (alist-get '(python-mode python-ts-mode) flymake-collection-hook-config nil nil 'equal)
'(flymake-collection-pycodestyle
flymake-collection-mypy
flymake-collection-pylint
flymake-collection-ruff
(flymake-collection-flake8 :disabled t))))

(use-package flymake-cppcheck
:straight (nil :host github :repo "shaohme/flymake-cppcheck")
Expand Down

0 comments on commit 36dac31

Please sign in to comment.