From 5d28da8a98423267f8f2de09e5285e81f61cc2ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20O=C3=9Fwald?= Date: Mon, 9 Dec 2024 09:19:54 +0100 Subject: [PATCH] docs: Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Günter Klatt <57760635+KlattG@users.noreply.github.com> --- README.md | 2 +- docs/Rules.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index be5890b1..bf222c88 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ UI5 linter scans your UI5 project and detects issues that might interfere with i UI5 linter comes with a set of predefined rules that are enabled by default. You can disable specific rules in the code via [Directives](#directives). -A list of all available rules can be found in the [Rules](./docs/Rules.md) page. +A list of all available rules can be found on the [Rules](./docs/Rules.md) page. ## Requirements diff --git a/docs/Rules.md b/docs/Rules.md index a5c80233..40df46ab 100644 --- a/docs/Rules.md +++ b/docs/Rules.md @@ -15,7 +15,7 @@ ## async-component-flags -Checks whether a Component is configured for asynchronous loading by implementing `sap.ui.core.IAsyncContentCreation` interface in the Component metadata or setting the `async` flags in the `manifest.json`. +Checks whether a Component is configured for asynchronous loading via the `sap.ui.core.IAsyncContentCreation` interface in the Component metadata or via `async` flags in the `manifest.json`. **Related information** - [Use Asynchronous Loading](https://ui5.sap.com/#/topic/676b636446c94eada183b1218a824717) @@ -24,7 +24,7 @@ Checks whether a Component is configured for asynchronous loading by implementin ## csp-unsafe-inline-script -Checks whether inline scripts are used in HTML files. This supports Content Security Policy (CSP) best practices. +Checks whether inline scripts are used in HTML files in accordance with Content Security Policy (CSP) best practices. **Related information** - [Content Security Policy](https://ui5.sap.com/#/topic/fe1a6dba940e479fb7c3bc753f92b28c)