GitXplorerGitXplorer
a

flycheck-bashate

public
10 stars
1 forks
0 issues

Commits

List of commits on branch master.

No commits found

There are no commits on branch master.

README

The README file for this repository.

Flycheck bashate Checker

License GPL 3 MELPA Build Status

Integrate bashate with flycheck to automatically check the style of your bash scripts on the fly.

Installation

MELPA

The preferred way to install flycheck-bashate is via MELPA - then you can just M-x package-install RET flycheck-bashate RET

To enable then simply add the following to your init file:

(eval-after-load 'flycheck
  '(progn
     (require 'flycheck-bashate)
     (flycheck-bashate-setup)))

Manual

If you would like to install the package manually, download or clone it and place within Emacs' load-path, then you can require it in your init file like this:

(require 'flycheck-bashate)
(flycheck-bashate-setup)

NOTE: This will also require the manual installation of flycheck if you have not done so already.

License

Copyright © 2016 Alex Murray

Distributed under GNU GPL, version 3.