Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
},
"repository": {
"type": "git",
"url": "https://github.com/vamshidhar199/Ctxlint.git"
"url": "https://github.com/ctxlint/Ctxlint.git"
},
"homepage": "https://github.com/vamshidhar199/Ctxlint#readme",
"homepage": "https://github.com/ctxlint/Ctxlint#readme",
"bugs": {
"url": "https://github.com/vamshidhar199/Ctxlint/issues"
"url": "https://github.com/ctxlint/Ctxlint/issues"
},
"scripts": {
"test": "vitest run",
Expand Down
4 changes: 2 additions & 2 deletions src/reporter/sarif.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const RULE_METADATA = {
'token-budget': { name: 'TokenBudget', short: 'Token cost estimate and signal-to-noise ratio' },
};

const HELP_URI = 'https://github.com/vamshidhar199/Ctxlint#what-it-checks';
const HELP_URI = 'https://github.com/ctxlint/Ctxlint#what-it-checks';

// Accumulates results across multiple files — call reportSarif() once per file,
// then flushSarif() at the end to emit the full SARIF document.
Expand Down Expand Up @@ -81,7 +81,7 @@ export function flushSarif() {
driver: {
name: 'ctxlint',
version,
informationUri: 'https://github.com/vamshidhar199/Ctxlint',
informationUri: 'https://github.com/ctxlint/Ctxlint',
rules,
},
},
Expand Down
Loading