squawk-cli 1.5.4 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -173,13 +173,13 @@ See the ["GitHub Integration" docs](https://squawkhq.com/docs/github_app) for mo
173
173
  Integrate Squawk into Git workflow with [pre-commit](https://pre-commit.com/). Add the following
174
174
  to your project's `.pre-commit-config.yaml`:
175
175
 
176
- ```
176
+ ```yaml
177
177
  repos:
178
178
  - repo: https://github.com/sbdchd/squawk
179
179
  rev: v0.10.0
180
180
  hooks:
181
- - id: squawk
182
- files: path/to/postres/migrations/written/in/sql
181
+ - id: squawk
182
+ files: path/to/postgres/migrations/written/in/sql
183
183
  ```
184
184
 
185
185
  Note the `files` parameter as it specifies the location of the files to be linted.
@@ -197,6 +197,7 @@ Note the `files` parameter as it specifies the location of the files to be linte
197
197
  - <https://github.com/AdmTal/PostgreSQL-Query-Lock-Explainer>
198
198
  - <https://github.com/stripe/pg-schema-diff>
199
199
  - <https://github.com/kristiandupont/schemalint>
200
+ - <https://github.com/supabase-community/postgres-language-server>
200
201
 
201
202
  ## related blog posts / SE Posts / PG Docs
202
203
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "1.5.4",
3
+ "version": "1.6.0",
4
4
  "description": "linter for PostgreSQL, focused on migrations",
5
5
  "repository": "git@github.com:sbdchd/squawk.git",
6
6
  "author": "Steve Dignam <steve@dignam.xyz>",