Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T16:15:36.000Z (7 months ago)
- Last Synced: 2024-06-10T19:04:43.941Z (7 months ago)
- Topics: emacs, flymake, flymake-backend, sql, sqlfluff
- Language: Emacs Lisp
- Homepage:
- Size: 23.4 KB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flymake-sqlfluff
[![MELPA](https://melpa.org/packages/flymake-sqlfluff-badge.svg)](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"))
```