sonarqube: Make default config optional
Signed-off-by: Scott Guymer <scott.guymer@philips.com>
This commit is contained in:
+2
-2
@@ -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.
|
||||
|
||||
Vendored
+1
-1
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user