Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 22aaf33

Browse files
Merge pull request #5 from codiga/daniel/add-links
Daniel/add links
2 parents 8027a7f + 99d1baa commit 22aaf33

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codiga/cli",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"description": "A Codiga CLI used to integrate Codiga easily in your projects",
55
"homepage": "https://github.com/codiga/codiga-cli",
66
"repository": {

src/addRuleset.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,5 +187,17 @@ export async function addRuleset(rulesetNamesParams) {
187187
printEmptyLine();
188188
}
189189

190+
printInfo("Check Codiga Rules in:");
191+
console.log(" - IDE:");
192+
printSuggestion(" - VS Code:", "codiga.io/get-codiga/vscode");
193+
printSuggestion(" - JetBrains:", "codiga.io/get-codiga/jetbrains");
194+
printSuggestion(" - Visual Studio:", "codiga.io/get-codiga/visualstudio");
195+
printSuggestion(
196+
" - Git pre-hook:",
197+
"doc.codiga.io/docs/code-analysis/integration/git-hooks"
198+
);
199+
printSuggestion(" - Git Push/Pull Request:", "app.codiga.io");
200+
printEmptyLine();
201+
190202
process.exit(0);
191203
}

0 commit comments

Comments
 (0)