squawk-cli 2.19.0__py3-none-win32.whl → 2.20.0__py3-none-win32.whl
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.
- {squawk_cli-2.19.0.data → squawk_cli-2.20.0.data}/scripts/squawk.exe +0 -0
- {squawk_cli-2.19.0.dist-info → squawk_cli-2.20.0.dist-info}/METADATA +18 -1
- squawk_cli-2.20.0.dist-info/RECORD +4 -0
- squawk_cli-2.19.0.dist-info/RECORD +0 -4
- {squawk_cli-2.19.0.dist-info → squawk_cli-2.20.0.dist-info}/WHEEL +0 -0
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: squawk-cli
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.20.0
|
4
4
|
Classifier: License :: OSI Approved :: Apache Software License
|
5
5
|
Classifier: License :: OSI Approved :: MIT License
|
6
6
|
Classifier: Operating System :: MacOS
|
@@ -199,6 +199,23 @@ You can also ignore multiple rules by making a comma seperated list:
|
|
199
199
|
alter table t drop column c cascade;
|
200
200
|
```
|
201
201
|
|
202
|
+
To ignore a rule for the entire rule, use `squawk-ignore-file`:
|
203
|
+
|
204
|
+
```sql
|
205
|
+
-- squawk-ignore-file ban-drop-column
|
206
|
+
alter table t drop column c cascade;
|
207
|
+
-- also ignored!
|
208
|
+
alter table t drop column d cascade;
|
209
|
+
```
|
210
|
+
|
211
|
+
Or leave off the rule names to ignore all rules for the file
|
212
|
+
|
213
|
+
```sql
|
214
|
+
-- squawk-ignore-file
|
215
|
+
alter table t drop column c cascade;
|
216
|
+
create table t (a int);
|
217
|
+
```
|
218
|
+
|
202
219
|
### Configuration file
|
203
220
|
|
204
221
|
Rules can also be disabled with a configuration file.
|
@@ -0,0 +1,4 @@
|
|
1
|
+
squawk_cli-2.20.0.data/scripts/squawk.exe,sha256=Nft-Tv8XDlW1NZGwUCeB0pmRMnvB4etCIFVz4Tkk4Ww,6277120
|
2
|
+
squawk_cli-2.20.0.dist-info/METADATA,sha256=xIJacj_f4m-bUvF0gSAkznC5IL6vIk1uaqSRJCEBO5E,11913
|
3
|
+
squawk_cli-2.20.0.dist-info/WHEEL,sha256=CiLp0kI_D1SQdHfHt9BWsWFTRNd71UY0p9KVx6QjX7o,89
|
4
|
+
squawk_cli-2.20.0.dist-info/RECORD,,
|
@@ -1,4 +0,0 @@
|
|
1
|
-
squawk_cli-2.19.0.data/scripts/squawk.exe,sha256=VL4HxDgU8E3tzjqgjMPsehr3QFKPEWOTnn_LM7EiHrY,6276096
|
2
|
-
squawk_cli-2.19.0.dist-info/METADATA,sha256=OaYExvlKNXGv7MR4mFdznRYKEJ-VXKLMFUHxGI3_IyI,11533
|
3
|
-
squawk_cli-2.19.0.dist-info/WHEEL,sha256=CiLp0kI_D1SQdHfHt9BWsWFTRNd71UY0p9KVx6QjX7o,89
|
4
|
-
squawk_cli-2.19.0.dist-info/RECORD,,
|
File without changes
|