mirror of
https://github.com/saymrwulf/zipline.git
synced 2026-05-14 20:58:10 +00:00
For Emacs users, set a .dir-locals.el file to define behavior during formatting operations like `fill-paragraph` Set: - Double spaces after sentences. (Which is the default.) - Fill column to 79 characters. (To match pep8 script.) - Docstrings to conform to Django formatting, since that is currently most alike to the existing docstrings.
3 lines
138 B
EmacsLisp
3 lines
138 B
EmacsLisp
((nil . ((sentence-end-double-space . t)))
|
|
(python-mode . ((fill-column . 79)
|
|
(python-fill-docstring-style . django))))
|