Skip to content

Commit

Permalink
fix: Update CLI usage message
Browse files Browse the repository at this point in the history
  • Loading branch information
killerapp committed Sep 1, 2024
1 parent 0b4ae8d commit 6d4bbf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions linters/typescript/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ async function main() {
const args = process.argv.slice(2);
if (args.length !== 1) {
console.error(`
Usage: ai-context-lint <directory_to_lint>
Usage: codebase-context-lint <directory_to_lint>
AI Context Convention Linter
This tool validates context files, including .contextdocs.md and .contextignore, according to the AI Context Convention Specification.
Codebase Context Linter
This tool validates context files, including .contextdocs.md and .contextignore, according to the Codebase Context Specification.
`);
process.exit(1);
}
Expand Down

0 comments on commit 6d4bbf9

Please sign in to comment.