Kaynağa Gözat

SC-833 Update text about external PR analysis in AutoScan (#1907)

tags/8.0
Siegfried Ehret 5 yıl önce
ebeveyn
işleme
a3fd5e4407

+ 1
- 1
server/sonar-docs/src/pages/sonarcloud/autoscan.md Dosyayı Görüntüle

@@ -19,7 +19,7 @@ SonarCloud can autonomously scan your code, by simply reading it from your repos

Once activated, SonarCloud will automatically analyze:
* the default branch of the repository
* the pull requests (PR) on that default branch
* the pull requests (PR)

It will take care of doing it whenever you push on your repository.


+ 6
- 0
server/sonar-docs/src/tooltips/autoscan/caveats.md Dosyayı Görüntüle

@@ -0,0 +1,6 @@
No visual feedback (yet) in the UI.
Not supported: code coverage, import of external rule engine reports.

---

[Read more](https://sonarcloud.io/documentation/autoscan/) and join [the forum](https://community.sonarsource.com/tags/c/help/sc/autoscan) to ask your questions

+ 3
- 0
server/sonar-docs/src/tooltips/autoscan/limited-scope.md Dosyayı Görüntüle

@@ -0,0 +1,3 @@
The following languages are currently supported:

ABAP, Apex, CSS, Flex, Go, HTML, JS, Kotlin, PHP, Python, Ruby, Scala, Swift, TypeScript, TSQL, XML.

+ 6
- 22
server/sonar-web/src/main/js/apps/tutorials/analyzeProject/configurations/AutoScanAlert.tsx Dosyayı Görüntüle

@@ -23,26 +23,6 @@ import { Alert } from '../../../../components/ui/Alert';
import DocTooltip from '../../../../components/docs/DocTooltip';
import { translate } from '../../../../helpers/l10n';

const caveats = {
default: `
No visual feedback (yet) in the UI.
Only Pull Requests from the same repository are analyzed.
Not supported: code coverage, import of external rule engine reports.

---

[Read more](https://sonarcloud.io/documentation/autoscan/) and join [the forum](https://community.sonarsource.com/tags/c/help/sc/autoscan) to ask your questions
`
};

const limitedScope = {
default: `
The following languages are currently supported:

ABAP, Apex, CSS, Flex, Go, HTML, JS, Kotlin, PHP, Python, Ruby, Scala, Swift, TypeScript, TSQL, XML.
`
};

export function AutoScanAlert() {
return (
<Alert className="big-spacer-top" variant="info">
@@ -54,13 +34,17 @@ export function AutoScanAlert() {
caveats: (
<>
<strong>{translate('onboarding.analysis.with.autoscan.alert.caveats')}</strong>{' '}
<DocTooltip doc={Promise.resolve(caveats)} />
<DocTooltip
doc={import(/* webpackMode: "eager" */ 'Docs/tooltips/autoscan/caveats.md')}
/>
</>
),
scopes: (
<>
<strong>{translate('onboarding.analysis.with.autoscan.alert.scopes')}</strong>{' '}
<DocTooltip doc={Promise.resolve(limitedScope)} />
<DocTooltip
doc={import(/* webpackMode: "eager" */ 'Docs/tooltips/autoscan/limited-scope.md')}
/>
</>
)
}}

Loading…
İptal
Kaydet