Flycheck checker for beancount.
When flycheck-mode
is enabled, beancount-mode
files will be checked
automatically for correctness. See the beancount docs for more details on
what is considered correct.
I prefer to install with straight.el and use-package.
(use-package flycheck-beancount
:straight (flycheck-beancount :type git :host github :repo "John-Goff/flycheck-beancount"))
You can also install this package manually by first ensuring flycheck
is
installed, then downloading this code and adding the directory to your Emacs
load-path
.
Then, in your init.el
:
(eval-after-load 'flycheck
'(require 'flycheck-beancount))
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
See COPYING for details.