Skip to content

erickgnavar/flymake-sqlfluff

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

flymake-sqlfluff

MELPA

Flymake plugin to run a linter for SQL buffers using sqlfluff

Installation

Cloning the repo

Clone this repo somewhere, and add this to your config:

(add-to-list 'load-path "path where the repo was cloned")

(require 'flymake-sqlfluff)
(add-hook 'sql-mode-hook #'flymake-sqlfluff-load)

Using use-package

(use-package flymake-sqlfluff
  :ensure t)

Using straight.el

(use-package flymake-sqlfluff
  :straight (flymake-sqlfluff
             :type git
             :host github
             :repo "erickgnavar/flymake-sqlfluff"))