File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ export class ContextLinter {
70
70
private lintMarkdownFile ( content : string ) : void {
71
71
console . log ( ' - Validating Markdown structure' ) ;
72
72
console . log ( ' - Checking YAML frontmatter' ) ;
73
- console . log ( ' - Verifying content against AI Context Convention Specification' ) ;
74
73
75
74
const parts = content . split ( '---\n' ) ;
76
75
if ( parts . length < 3 ) {
@@ -119,7 +118,6 @@ export class ContextLinter {
119
118
120
119
private lintYamlFile ( content : string ) : void {
121
120
console . log ( ' - Validating YAML structure' ) ;
122
- console . log ( ' - Verifying content against AI Context Convention Specification' ) ;
123
121
124
122
try {
125
123
const yamlData = yaml . load ( content ) as Record < string , unknown > ;
@@ -131,7 +129,6 @@ export class ContextLinter {
131
129
132
130
private lintJsonFile ( content : string ) : void {
133
131
console . log ( ' - Validating JSON structure' ) ;
134
- console . log ( ' - Verifying content against AI Context Convention Specification' ) ;
135
132
136
133
try {
137
134
const jsonData = JSON . parse ( content ) as Record < string , unknown > ;
You can’t perform that action at this time.
0 commit comments