branch: elpa/flymake-collection
commit 98cf1cd4b78ac6e11c4d7305423069fd46e0b1f9
Author: Mohsin Kaleem <[email protected]>
Commit: Mohsin Kaleem <[email protected]>
(checkers): Add sql-lint checker
---
checkers/flymake-rest-sql-lint.el | 59 +++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/checkers/flymake-rest-sql-lint.el
b/checkers/flymake-rest-sql-lint.el
new file mode 100644
index 0000000000..17b12dc142
--- /dev/null
+++ b/checkers/flymake-rest-sql-lint.el
@@ -0,0 +1,59 @@
+;;; flymake-rest-sql-lint.el --- SQL diagnostic function -*- lexical-binding:
t -*-
+
+;; Copyright (c) 2021 Mohsin Kaleem
+
+;; Permission is hereby granted, free of charge, to any person obtaining a copy
+;; of this software and associated documentation files (the "Software"), to
deal
+;; in the Software without restriction, including without limitation the rights
+;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+;; copies of the Software, and to permit persons to whom the Software is
+;; furnished to do so, subject to the following conditions:
+
+;; The above copyright notice and this permission notice shall be included in
all
+;; copies or substantial portions of the Software.
+
+;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
+;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE
+;; SOFTWARE.
+
+;;; Code:
+
+(require 'flymake)
+(require 'flymake-rest)
+
+(eval-when-compile
+ (require 'flymake-rest-define)
+ (require 'flymake-rest-parse-rx))
+
+(defcustom flymake-rest-sql-lint-driver nil
+ "The SQL driver to pass to sql-lint."
+ :type '(choice
+ (const :tag "Default" nil)
+ (const :tag "MySQL" "mysql")
+ (const :tag "PostgreSQL" "postgres"))
+ :group 'flymake-rest)
+
+;;;###autoload (autoload 'flymake-rest-sql-lint "flymake-rest-sql-lint")
+(flymake-rest-define flymake-rest-sql-lint
+ "A SQL syntax checker using the sql-lint tool.
+
+See URL `https://github.com/joereynolds/sql-lint'."
+ :title "sql-lint"
+ :pre-let ((lint-exec (executable-find "sql-lint")))
+ :pre-check (unless lint-exec
+ (error "Cannot find sql-lint executable"))
+ :write-type 'pipe
+ :command `(,lint-exec
+ ,@(when flymake-rest-sql-lint-driver
+ `("--driver" ,flymake-rest-sql-lint-driver)))
+ :error-parser
+ (flymake-rest-parse-rx
+ ((warning bol "stdin:" line " [sql-lint: " (id (one-or-more (any alnum
"-"))) "] " (message) eol))))
+
+(provide 'flymake-rest-sql-lint)
+
+;;; flymake-rest-sql-lint.el ends here