@cspell/cspell-json-reporter 9.3.2 → 9.5.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.
package/README.md CHANGED
@@ -125,9 +125,12 @@ export type CSpellJSONReporterSettings = {
125
125
  outFile?: string;
126
126
  /**
127
127
  * Add more information about the files being checked and the configuration
128
- * @default false
129
128
  */
130
129
  verbose?: boolean;
130
+ /**
131
+ * Level of verbosity (higher number = more verbose).
132
+ */
133
+ verboseLevel?: number;
131
134
  /**
132
135
  * Add information useful for debugging cspell.json files
133
136
  * @default false
@@ -16,9 +16,12 @@ export type CSpellJSONReporterSettings = {
16
16
  outFile?: string;
17
17
  /**
18
18
  * Add more information about the files being checked and the configuration
19
- * @default false
20
19
  */
21
20
  verbose?: boolean;
21
+ /**
22
+ * Level of verbosity (higher number = more verbose).
23
+ */
24
+ verboseLevel?: number;
22
25
  /**
23
26
  * Add information useful for debugging cspell.json files
24
27
  * @default false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/cspell-json-reporter",
3
- "version": "9.3.2",
3
+ "version": "9.5.0",
4
4
  "description": "JSON reporter for CSpell",
5
5
  "author": "Jason Dent",
6
6
  "license": "MIT",
@@ -47,10 +47,10 @@
47
47
  "watch": "tsc -b . -w -f"
48
48
  },
49
49
  "dependencies": {
50
- "@cspell/cspell-types": "9.3.2"
50
+ "@cspell/cspell-types": "9.5.0"
51
51
  },
52
52
  "engines": {
53
53
  "node": ">=20"
54
54
  },
55
- "gitHead": "595bde79b4a5abf3256b71129995ec3601454b02"
55
+ "gitHead": "4407eed11650481d9037e5a1d53488a93ff4b66d"
56
56
  }