sonarqube: Make default config optional

Signed-off-by: Scott Guymer <scott.guymer@philips.com>
This commit is contained in:
Scott Guymer
2023-06-28 14:41:07 +02:00
parent 9bc8141ce1
commit 027f7ff705
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,13 +21,13 @@ export interface Config {
* The base url of the sonarqube installation. Defaults to https://sonarcloud.io.
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
/**
* The api key to access the sonarqube instance under baseUrl.
* @visibility secret
*/
apiKey: string;
apiKey?: string;
/**
* The optional sonarqube instances.
+1 -1
View File
@@ -21,6 +21,6 @@ export interface Config {
* The base url of the sonarqube installation. Defaults to https://sonarcloud.io.
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
};
}