diff options
author | Tibor Blenessy <tibor.blenessy@sonarsource.com> | 2020-07-21 16:02:05 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-07-21 20:05:29 +0000 |
commit | de358ad58c314be7ccc5d996de018f51927eef42 (patch) | |
tree | 0af9e5c70fe42fcbe0df118ee7c22efade4d6159 /server/sonar-docs/src/pages | |
parent | 9bd12105f58d54a18ad2d0e64cc7f8f081b8b276 (diff) | |
download | sonarqube-de358ad58c314be7ccc5d996de018f51927eef42.tar.gz sonarqube-de358ad58c314be7ccc5d996de018f51927eef42.zip |
SONAR-13576 Remove sonar-typescript-plugin (#2920)
* SONAR-13576 Remove sonar-typescript-plugin
* Update sonar-javascript-plugin to 6.3.0.12464
Diffstat (limited to 'server/sonar-docs/src/pages')
-rw-r--r-- | server/sonar-docs/src/pages/analysis/languages/overview.md | 2 | ||||
-rw-r--r-- | server/sonar-docs/src/pages/analysis/languages/typescript.md | 40 |
2 files changed, 1 insertions, 41 deletions
diff --git a/server/sonar-docs/src/pages/analysis/languages/overview.md b/server/sonar-docs/src/pages/analysis/languages/overview.md index 8ab0c849107..373083a276a 100644 --- a/server/sonar-docs/src/pages/analysis/languages/overview.md +++ b/server/sonar-docs/src/pages/analysis/languages/overview.md @@ -28,7 +28,7 @@ SonarQube allows to analyze different languages depending on the Edition you are | [Ruby](/analysis/languages/ruby/) |  |  |  | | [Scala](/analysis/languages/scala/) |  |  |  | | [Swift](/analysis/languages/swift/) | |  |  | -| [TypeScript](/analysis/languages/typescript/) |  |  |  | +| [TypeScript](/analysis/languages/javascript/) |  |  |  | | [TSQL](/analysis/languages/tsql/) | |  |  | | [VB.NET](/analysis/languages/vbnet/) |  |  |  | | [VB6](/analysis/languages/vb6/) | | |  | diff --git a/server/sonar-docs/src/pages/analysis/languages/typescript.md b/server/sonar-docs/src/pages/analysis/languages/typescript.md deleted file mode 100644 index c1d6130cd16..00000000000 --- a/server/sonar-docs/src/pages/analysis/languages/typescript.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: TypeScript -url: /analysis/languages/typescript/ ---- - -<!-- static --> -<!-- update_center:typescript --> -<!-- /static --> - - -## Prerequisites - -In order to analyze TypeScript code, you need to have Node.js >= 8 installed on the machine running the scan. Set property `sonar.typescript.node` to an absolute path to Node.js executable, if standard `node` is not available. - -Also make sure to have [TypeScript](https://www.npmjs.com/package/typescript) as a project dependency or dev dependency. If it's not the case, add it: -``` -cd <your-project-folder> -npm install -D typescript -``` -If you can't have TypeScript as a project dependency you can set your `NODE_PATH` variable to point to your globally installed TypeScript (but this is generally discouraged by the Node.js documentation). - -## Language-Specific Properties - -Discover and update the TypeScript-specific properties in: **<!-- sonarcloud -->Project <!-- /sonarcloud -->[Administration > General Settings > TypeScript](/#sonarqube-admin#/admin/settings?category=typescript)** - -## Supported Frameworks and Versions -* TypeScript >= 2.2 - -## Rule Profiles - -There are 2 built-in rule profiles for TypeScript: `Sonar way` (default) and `Sonar way Recommended`. -* `Sonar way` profile is activated by default. It defines a trimmed list of high-value/low-noise rules useful in almost any TS development context. -* `Sonar way Recommended` contains all rules from `Sonar way`, plus more rules that mandate high code readability and long-term project evolution. - -## Related Pages - -* [Test Coverage & Execution](/analysis/coverage/) (LCOV format) -* [Importing External Issues](/analysis/external-issues/) (TSLint) -* [SonarTS Plugin for TSLint](https://www.npmjs.com/package/tslint-sonarts) -* [Sample TypeScript Project](https://github.com/SonarSource/SonarTS-example/) |