This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install python3 | |
brew install flake8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
flake8 --ignore=E221,E701,E202,E501,E302,E301 $@ | |
# Return true | |
true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(load "~/.emacs.d/flymake.el") | |
(load "~/.emacs.d/flymake-cursor.el") | |
; manual python checking: | |
; pycheckers is a script in the path, under ~/bin/, that run | |
; pyflakes, pep8 and possibly more checks | |
(setq python-check-command "/Users/erwan/bin/pycheckers") | |
; use flymake with pycheckers | |
(add-hook 'find-file-hook 'flymake-find-file-hook) |
OlderNewer