squawk-cli 0.28.0 → 0.29.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 +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -92,6 +92,13 @@ OPTIONS:
92
92
  --dump-ast <ast-format>
93
93
  Output AST in JSON [possible values: Raw, Parsed, Debug]
94
94
 
95
+ --exclude-path <excluded-path>...
96
+ Paths to exclude
97
+
98
+ For example: --exclude-path=005_user_ids.sql --exclude-path=009_account_emails.sql
99
+
100
+ --exclude-path='*user_ids.sql'
101
+
95
102
  -e, --exclude <rule>...
96
103
  Exclude specific warnings
97
104
 
@@ -190,6 +197,7 @@ Note the `files` parameter as it specifies the location of the files to be linte
190
197
  - <https://github.com/ankane/strong_migrations>
191
198
  - <https://github.com/AdmTal/PostgreSQL-Query-Lock-Explainer>
192
199
  - <https://github.com/stripe/pg-schema-diff>
200
+ - <https://github.com/kristiandupont/schemalint>
193
201
 
194
202
  ## related blog posts / SE Posts / PG Docs
195
203
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squawk-cli",
3
- "version": "0.28.0",
3
+ "version": "0.29.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>",