We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e73c4f6 commit f183e59Copy full SHA for f183e59
src/api.ts
@@ -11,3 +11,5 @@ export {PackageJsonFileLintingResult} from './types/package-json-linting-result'
11
export {PackageJsonFileAggregatedResultCounts, OverallAggregatedResultCounts} from './linter/results-helper';
12
13
export {Rules, Rule} from './native-rules';
14
+
15
+export {write} from './console-reporter';
test/unit/api.test.ts
@@ -38,4 +38,8 @@ describe('api Unit Tests', () => {
38
test('Rules should be exported', () => {
39
expect(api).toHaveProperty('Rules');
40
});
41
42
+ test('Report writer should be exported', () => {
43
+ expect(api).toHaveProperty('write');
44
+ });
45
0 commit comments