Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cspell/cspell-json-reporter

Package Overview
Dependencies
Maintainers
1
Versions
208
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cspell/cspell-json-reporter - npm Package Compare versions

Comparing version 8.11.0 to 8.12.1

7

dist/esm/index.d.ts
import type { CSpellReporter, ReporterConfiguration } from '@cspell/cspell-types';
import type { CSpellJSONReporterSettings } from './CSpellJSONReporterSettings.js';
export declare function getReporter(settings: unknown | CSpellJSONReporterSettings, cliOptions?: ReporterConfiguration): Required<CSpellReporter>;
type ReporterConsole = Pick<Console, 'log' | 'warn' | 'error'>;
export interface CSpellJSONReporterConfiguration extends ReporterConfiguration {
console?: ReporterConsole;
}
export declare function getReporter(settings: unknown | CSpellJSONReporterSettings, cliOptions?: CSpellJSONReporterConfiguration): Required<CSpellReporter>;
export {};
//# sourceMappingURL=index.d.ts.map

@@ -12,5 +12,7 @@ import { promises as fs } from 'node:fs';

const STDERR = 'stderr';
const _console = console;
export function getReporter(settings, cliOptions) {
const useSettings = normalizeSettings(settings);
const reportData = { issues: [], info: [], debug: [], error: [], progress: [] };
const console = cliOptions?.console ?? _console;
return {

@@ -17,0 +19,0 @@ issue: (issue) => {

6

package.json
{
"name": "@cspell/cspell-json-reporter",
"version": "8.11.0",
"version": "8.12.1",
"description": "JSON reporter for CSpell",

@@ -49,3 +49,3 @@ "author": "Jason Dent",

"dependencies": {
"@cspell/cspell-types": "8.11.0"
"@cspell/cspell-types": "8.12.1"
},

@@ -55,3 +55,3 @@ "engines": {

},
"gitHead": "2b85b2b458b1117870a4f0aee18fb45ce991848d"
"gitHead": "2b9d2fd6fb3a228886016f897c40e8b926e063ab"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc