putout 22.3.2 → 22.3.3

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.
package/ChangeLog CHANGED
@@ -1,3 +1,9 @@
1
+ 2021.11.30, v22.3.3
2
+
3
+ fix:
4
+ - (putout) validate-options: add support of optional message
5
+
6
+
1
7
  2021.11.30, v22.3.2
2
8
 
3
9
  fix:
@@ -16,6 +16,26 @@
16
16
  }],
17
17
  "minItems": 2,
18
18
  "additionalItems": false
19
+ }, {
20
+ "type": "array",
21
+ "items": [{
22
+ "enum": [ "on", "off"]
23
+ }, {
24
+ "type": "string"
25
+ }, {
26
+ "type": "object"
27
+ }],
28
+ "minItems": 3,
29
+ "additionalItems": false
30
+ }, {
31
+ "type": "array",
32
+ "items": [{
33
+ "enum": [ "on", "off"]
34
+ }, {
35
+ "type": "string"
36
+ }],
37
+ "minItems": 2,
38
+ "additionalItems": false
19
39
  }]
20
40
  },
21
41
  "rules": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "22.3.2",
3
+ "version": "22.3.3",
4
4
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
5
5
  "description": "🐊 Pluggable and configurable code transformer with built-in eslint, babel plugins and jscodeshift codemods support of js, jsx typescript, flow files, markdown, yaml and json",
6
6
  "homepage": "http://github.com/coderaiser/putout",