Skip to content

Commit 884fed0

Browse files
committed
refactor: Remove redundant logging statements
1 parent 329729d commit 884fed0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

linters/typescript/src/context_linter.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ export class ContextLinter {
7070
private lintMarkdownFile(content: string): void {
7171
console.log(' - Validating Markdown structure');
7272
console.log(' - Checking YAML frontmatter');
73-
console.log(' - Verifying content against AI Context Convention Specification');
7473

7574
const parts = content.split('---\n');
7675
if (parts.length < 3) {
@@ -119,7 +118,6 @@ export class ContextLinter {
119118

120119
private lintYamlFile(content: string): void {
121120
console.log(' - Validating YAML structure');
122-
console.log(' - Verifying content against AI Context Convention Specification');
123121

124122
try {
125123
const yamlData = yaml.load(content) as Record<string, unknown>;
@@ -131,7 +129,6 @@ export class ContextLinter {
131129

132130
private lintJsonFile(content: string): void {
133131
console.log(' - Validating JSON structure');
134-
console.log(' - Verifying content against AI Context Convention Specification');
135132

136133
try {
137134
const jsonData = JSON.parse(content) as Record<string, unknown>;

0 commit comments

Comments
 (0)