https://github.com/erickgnavar/flymake-sqlfluff
flymake plugin for SQL using sqlfluff
https://github.com/erickgnavar/flymake-sqlfluff
emacs flymake flymake-backend sql sqlfluff
Last synced: 23 days ago
JSON representation
flymake plugin for SQL using sqlfluff
- Host: GitHub
- URL: https://github.com/erickgnavar/flymake-sqlfluff
- Owner: erickgnavar
- License: gpl-3.0
- Created: 2022-09-22T00:10:23.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-11T12:57:45.000Z (about 1 year ago)
- Last Synced: 2025-06-04T08:23:13.065Z (about 1 month ago)
- Topics: emacs, flymake, flymake-backend, sql, sqlfluff
- Language: Emacs Lisp
- Homepage:
- Size: 24.4 KB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flymake-sqlfluff
[](https://melpa.org/#/flymake-sqlfluff)
Flymake plugin to run a linter for SQL buffers using [sqlfluff](https://www.sqlfluff.com)
## Installation
### Cloning the repo
Clone this repo somewhere, and add this to your config:
```elisp
(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
```emacs-lisp
(use-package flymake-sqlfluff
:ensure t)
```### Using straight.el
```emacs-lisp
(use-package flymake-sqlfluff
:straight (flymake-sqlfluff
:type git
:host github
:repo "erickgnavar/flymake-sqlfluff"))
```