From 1a5331ec83f997ba76c258b8860feeeb55a62a86 Mon Sep 17 00:00:00 2001 From: Marian Zeis <13335743+marianfoo@users.noreply.github.com> Date: Mon, 23 Jun 2025 20:14:41 +0200 Subject: [PATCH] fix: Update links to reflect new repository location of ui5-linter --- docs/02_Read-Me-First/the-ui5-ecosystem-b72ccb5.md | 2 +- docs/03_Get-Started/best-practices-for-developers-28fcd55.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/02_Read-Me-First/the-ui5-ecosystem-b72ccb5.md b/docs/02_Read-Me-First/the-ui5-ecosystem-b72ccb5.md index ec58fa6..5a1c121 100644 --- a/docs/02_Read-Me-First/the-ui5-ecosystem-b72ccb5.md +++ b/docs/02_Read-Me-First/the-ui5-ecosystem-b72ccb5.md @@ -49,7 +49,7 @@ UI5 linter scans your SAPUI5 project and detects issues that can prevent the pro ### Further Information -- [UI5 linter on GitHub](https://github.com/SAP/ui5-linter) +- [UI5 linter on GitHub](https://github.com/UI5/linter) diff --git a/docs/03_Get-Started/best-practices-for-developers-28fcd55.md b/docs/03_Get-Started/best-practices-for-developers-28fcd55.md index d1631e5..a0ec3ad 100644 --- a/docs/03_Get-Started/best-practices-for-developers-28fcd55.md +++ b/docs/03_Get-Started/best-practices-for-developers-28fcd55.md @@ -60,13 +60,13 @@ To build and serve your project in accordance with best practices, we recommend ### Supporting Tool - UI5 Linter -[UI5 linter](https://github.com/SAP/ui5-linter) is a command-line tool to identify legacy code in your SAPUI5 project. It checks JavaScript, TypeScript, XML, JSON, and other files in your project and reports findings if legacy code is used. UI5 linter is our state-of-the-art tool to get and keep your SAPUI5 project legacy-free. +[UI5 linter](https://github.com/UI5/linter) is a command-line tool to identify legacy code in your SAPUI5 project. It checks JavaScript, TypeScript, XML, JSON, and other files in your project and reports findings if legacy code is used. UI5 linter is our state-of-the-art tool to get and keep your SAPUI5 project legacy-free. ### Deprecated APIs -In general, **you must not use deprecated APIs** anymore, such as `sap.ui.getCore()`. You can find deprecated APIs in the [API Reference](https://ui5.sap.com/#/api/deprecated), in the [What's New Viewer](https://help.sap.com/whats-new/67f60363b57f4ac0b23efd17fa192d60?Type=Deleted%3BDeprecated), and in the reports by our [Support Assistant](../04_Essentials/support-assistant-57ccd7d.md) and [UI5 linter](https://github.com/SAP/ui5-linter). For new projects, we recommend the use of TypeScript, because usage of deprecated APIs can then be detected easily. +In general, **you must not use deprecated APIs** anymore, such as `sap.ui.getCore()`. You can find deprecated APIs in the [API Reference](https://ui5.sap.com/#/api/deprecated), in the [What's New Viewer](https://help.sap.com/whats-new/67f60363b57f4ac0b23efd17fa192d60?Type=Deleted%3BDeprecated), and in the reports by our [Support Assistant](../04_Essentials/support-assistant-57ccd7d.md) and [UI5 linter](https://github.com/UI5/linter). For new projects, we recommend the use of TypeScript, because usage of deprecated APIs can then be detected easily. Also, see the relevant warnings and errors logged to the browser's dev console during runtime. You might need to increase the `sap-ui-log-level`. For more information, see [Logging and Tracing](../04_Essentials/logging-and-tracing-9f4d62c.md).