cspell 7.0.1 → 7.0.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.
package/README.md CHANGED
@@ -150,6 +150,7 @@ Options:
150
150
  --no-progress Turn off progress messages
151
151
  --no-summary Turn off summary message in console.
152
152
  -s, --silent Silent mode, suppress error messages.
153
+ --quiet An alias of --silent
153
154
  --fail-fast Exit after first file with an issue or error.
154
155
  -r, --root <root folder> Root directory, defaults to current directory.
155
156
  --relative Issues are displayed relative to root.
@@ -67,6 +67,7 @@ export function commandLint(prog) {
67
67
  .option('--no-progress', 'Turn off progress messages')
68
68
  .option('--no-summary', 'Turn off summary message in console.')
69
69
  .option('-s, --silent', 'Silent mode, suppress error messages.')
70
+ .addOption(new CommanderOption('--quiet', 'An alias of --silent').implies({ silent: true }))
70
71
  .option('--fail-fast', 'Exit after first file with an issue or error.')
71
72
  .addOption(new CommanderOption('--no-fail-fast', 'Process all files even if there is an error.').hideHelp())
72
73
  .option('-r, --root <root folder>', 'Root directory, defaults to current directory.')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cspell",
3
- "version": "7.0.1",
3
+ "version": "7.0.2",
4
4
  "description": "A Spelling Checker for Code!",
5
5
  "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
6
6
  "bin": {
@@ -82,17 +82,17 @@
82
82
  },
83
83
  "homepage": "https://streetsidesoftware.github.io/cspell/",
84
84
  "dependencies": {
85
- "@cspell/cspell-json-reporter": "7.0.1",
86
- "@cspell/cspell-pipe": "7.0.1",
87
- "@cspell/cspell-types": "7.0.1",
88
- "@cspell/dynamic-import": "7.0.1",
85
+ "@cspell/cspell-json-reporter": "7.0.2",
86
+ "@cspell/cspell-pipe": "7.0.2",
87
+ "@cspell/cspell-types": "7.0.2",
88
+ "@cspell/dynamic-import": "7.0.2",
89
89
  "chalk": "^5.3.0",
90
90
  "chalk-template": "^1.1.0",
91
91
  "commander": "^11.0.0",
92
- "cspell-gitignore": "7.0.1",
93
- "cspell-glob": "7.0.1",
94
- "cspell-io": "7.0.1",
95
- "cspell-lib": "7.0.1",
92
+ "cspell-gitignore": "7.0.2",
93
+ "cspell-glob": "7.0.2",
94
+ "cspell-io": "7.0.2",
95
+ "cspell-lib": "7.0.2",
96
96
  "fast-glob": "^3.3.1",
97
97
  "fast-json-stable-stringify": "^2.1.0",
98
98
  "file-entry-cache": "^6.0.1",
@@ -112,5 +112,5 @@
112
112
  "micromatch": "^4.0.5",
113
113
  "minimatch": "^9.0.3"
114
114
  },
115
- "gitHead": "124eea257b724b8354d3bc38f48fe9529cf6f7be"
115
+ "gitHead": "25aa083421fc81e4d5b7cedb4755f9b327120cfc"
116
116
  }