Merge pull request #18480 from philips-forks/master
sonarqube: Make default config optional
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
---
|
||||
'@backstage/plugin-sonarqube': patch
|
||||
'@backstage/plugin-sonarqube-backend': patch
|
||||
---
|
||||
|
||||
Made default config optional
|
||||
+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