From 5a57126b57b007307efa10fbd1b06f2355959b02 Mon Sep 17 00:00:00 2001 From: David AZOULAY Date: Thu, 12 Dec 2024 22:57:37 +0100 Subject: [PATCH] Updated --- .../git-repositories.md | 47 +++++++++++++++---- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/content/CTG_50_docs/CTG_40_integration/CTG_25_webservices/LSN_20_git-repositories/git-repositories.md b/content/CTG_50_docs/CTG_40_integration/CTG_25_webservices/LSN_20_git-repositories/git-repositories.md index e12670cb..fc9eaca1 100644 --- a/content/CTG_50_docs/CTG_40_integration/CTG_25_webservices/LSN_20_git-repositories/git-repositories.md +++ b/content/CTG_50_docs/CTG_40_integration/CTG_25_webservices/LSN_20_git-repositories/git-repositories.md @@ -133,7 +133,7 @@ You can specify additional remotes: Each remote definition use the same syntax as the origin definition. -

Maven settings

+### Maven settings If required, you can specify additional settings to change the Maven settings generated in the `pom.xml`. @@ -145,9 +145,9 @@ If required, you can specify additional settings to change the Maven settings ge "javaVersion": "", "url": "", "repositoryUrl": "", - "checkstyle": , - "jshint": , - "checkstyleReportFile": "", + "checkstyle": , + "jshint": , + "eslint": , "dependencies": [ { "groupId": "", @@ -160,13 +160,13 @@ If required, you can specify additional settings to change the Maven settings ge } ``` -

SonarQube® settings

+### SonarQube® settings -If required, you can specify additional settings to change the SonarQube® Maven settings generated in the `pom.xml`. +If required, you can specify additional settings to change the SonarQube® configuration generated in the `pom.xml`. ```json { - "maven": { + "sonar": { "projectKey": "", "projectName": "", "projectVersion": "", @@ -175,7 +175,38 @@ If required, you can specify additional settings to change the SonarQube® Ma } ``` -

GPG signature

+### Checkstyle® settings + +If required, you can specify additional settings to change the Checkstyle® configuration generated in the `pom.xml`. + +```json +{ + "checkstyleConfig": ">", + "checkstyleReportFile": "" +} +``` + +### JSHint® settings + +If required, you can specify additional settings to change the JSHint® configuration. + +```json +{ + "jshintConfig": ">" +} +``` + +### ESLint® settings + +If required, you can specify additional settings to change the ESLint® configuration. + +```json +{ + "eslintConfig": ">" +} +``` + +### GPG signature As of version 5.3 it is possible to enable GPG signature of commits.