Merge branch 'master' into command

This commit is contained in:
Austin Bingham
2017-06-20 07:20:50 +01:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
# flycheck-vale # flycheck-vale
[![MELPA](http://melpa.org/packages/flycheck-vale.svg)](http://melpa.org/#/flycheck-vale)
This package provides [flycheck](http://www.flycheck.org/) integration This package provides [flycheck](http://www.flycheck.org/) integration
for [vale](https://github.com/ValeLint/vale). Flycheck is an Emacs system for for [vale](https://github.com/ValeLint/vale). Flycheck is an Emacs system for
on-the-fly syntax checking. Vale is a natural language linter. So with on-the-fly syntax checking. Vale is a natural language linter. So with
@@ -9,6 +11,8 @@ Right now `flycheck-vale` is very new and unpolished. Ideas, PRs, etc. are welco
## Quickstart ## Quickstart
Install `flycheck-vale` from MELPA using `package-install` or something equivalent.
To use `flycheck-vale` just `require` it and run `flycheck-vale-setup`: To use `flycheck-vale` just `require` it and run `flycheck-vale-setup`:
```emacs-lisp ```emacs-lisp

View File

@@ -1,10 +1,10 @@
;;; flycheck-vale.el --- flycheck integration for vale ;;; flycheck-vale.el --- flycheck integration for vale -*- lexical-binding: t -*-
;; Copyright (c) 2017 Austin Bingham ;; Copyright (c) 2017 Austin Bingham
;; ;;
;; Author: Austin Bingham <austin.bingham@gmail.com> ;; Author: Austin Bingham <austin.bingham@gmail.com>
;; Version: 0.1 ;; Version: 0.1
;; URL: https://github.com/abingham/flycheck-vale ;; URL: https://github.com/abingham/flycheck-vale
;; Package-Requires: ((emacs "24.4") (flycheck "0.22")) ;; Package-Requires: ((emacs "24.4") (flycheck "0.22") (let-alist "1.0.4"))
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.
;; ;;
@@ -44,7 +44,9 @@
;; ;;
;;; Code: ;;; Code:
(require 'cl-lib)
(require 'flycheck) (require 'flycheck)
(require 'let-alist)
(defgroup flycheck-vale nil (defgroup flycheck-vale nil
"Variables related to flycheck-vale." "Variables related to flycheck-vale."