Updates according PR commentas

Signed-off-by: manusant <ney.br.santos@gmail.com>
This commit is contained in:
manusant
2022-11-10 16:08:42 +00:00
parent a4a7166fd0
commit b94af16ac8
4 changed files with 1 additions and 7 deletions
+1
View File
@@ -3,3 +3,4 @@
---
Fix sonarqube annotation parsing. Add content page for Sonarqube.
Removed the deprecated `plugin` export; please use `sonarQubePlugin` instead.
-5
View File
@@ -38,11 +38,6 @@ export const SonarQubeCard: (props: {
duplicationRatings?: DuplicationRating[];
}) => JSX.Element;
// @public (undocumented)
export const SonarQubeContentPage: (
props: SonarQubeContentPageProps,
) => JSX.Element;
// @public (undocumented)
export type SonarQubeContentPageProps = {
title?: string;
@@ -34,7 +34,6 @@ export type SonarQubeContentPageProps = {
supportTitle?: string;
};
/** @public */
export const SonarQubeContentPage = (props: SonarQubeContentPageProps) => {
const { entity } = useEntity();
const { title, supportTitle } = props;
@@ -16,7 +16,6 @@
export { SonarQubeCard } from './SonarQubeCard';
export type { DuplicationRating } from './SonarQubeCard';
export { SonarQubeContentPage } from './SonarQubeContentPage';
export type { SonarQubeContentPageProps } from './SonarQubeContentPage';
export {
isSonarQubeAvailable,