wikilint 2.16.0 → 2.16.2

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.
@@ -431,8 +431,6 @@
431
431
  "parserFunction": [
432
432
  {
433
433
  "名称空间": "ns",
434
- "名字空间": "ns",
435
- "命名空間": "ns",
436
434
  "ns": "ns",
437
435
  "名称空间e": "nse",
438
436
  "名字空间e": "nse",
@@ -375,8 +375,6 @@
375
375
  "parserFunction": [
376
376
  {
377
377
  "名称空间": "ns",
378
- "名字空间": "ns",
379
- "命名空間": "ns",
380
378
  "ns": "ns",
381
379
  "名称空间e": "nse",
382
380
  "名字空间e": "nse",
@@ -0,0 +1,56 @@
1
+ {
2
+ "type": "object",
3
+ "additionalProperties": {
4
+ "type": "array",
5
+ "items": {
6
+ "type": "object",
7
+ "properties": {
8
+ "aliases": {
9
+ "type": "array",
10
+ "items": {
11
+ "type": "string"
12
+ },
13
+ "minItems": 1,
14
+ "uniqueItems": true
15
+ },
16
+ "description": {
17
+ "type": "string"
18
+ },
19
+ "signatures": {
20
+ "type": "array",
21
+ "items": {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "object",
25
+ "properties": {
26
+ "label": {
27
+ "type": "string"
28
+ },
29
+ "const": {
30
+ "type": "boolean"
31
+ },
32
+ "rest": {
33
+ "type": "boolean"
34
+ }
35
+ },
36
+ "required": [
37
+ "label"
38
+ ],
39
+ "additionalProperties": false
40
+ }
41
+ },
42
+ "minItems": 1
43
+ }
44
+ },
45
+ "required": [
46
+ "aliases",
47
+ "description"
48
+ ],
49
+ "additionalProperties": false
50
+ }
51
+ },
52
+ "required": [
53
+ "behaviorSwitches",
54
+ "parserFunctions"
55
+ ]
56
+ }