diff --git a/quality/inspections.md b/quality/inspections.md
index 9bb3fe7..7f77f21 100755
--- a/quality/inspections.md
+++ b/quality/inspections.md
@@ -7,7 +7,7 @@ Code inspections are very important in order to maintain the same code quality t
The following automated tests must pass without errors, failures and warnings for successful code changes:
* `php ./vendor/bin/phpstan analyse --autoload-file=phpOMS/Autoloader.php -l 9 -c Build/Config/phpstan.neon ./`
-* `php ./vendor/bin/phpcs ./ --standard="Build/Config/phpcs.xml"`
+* `php ./vendor/bin/phpcs --severity=1 ./ --standard="Build/Config/phpcs.xml"`
* `php ./vendor/bin/phpunit -c tests/PHPUnit/phpunit_no_coverage.xml`
* `npx eslint ./ -c Build/Config/.eslintrc.json`
* `npx jasmine-node ./`
@@ -155,7 +155,7 @@ php vendor/bin/phpstan analyse --autoload-file=phpOMS/Autoloader.php -l 9 -c Bui
The php code base has a defined code style standard. The easiest way to check for most rules is to run phpcs.
```sh
-php vendor/bin/phpcs ./ --standard="Build/Config/phpcs.xml" -s --report-junit=Build/test/junit_phpcs.xml
+php vendor/bin/phpcs --severity=1 ./ --standard="Build/Config/phpcs.xml" -s --report-junit=Build/test/junit_phpcs.xml
```
> Many IDEs allow to integrate phpcs rules/configuration files for automatic checks in the editor
@@ -217,74 +217,17 @@ php TestReportGenerator/src/index.php \
#### Other checks
-The following checks should return no result:
+The following checks should also be performed. If you use the git hooks from the Build repository, they are automatically done during the staging process.
-**Empty attributes:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -E '=\"[\#\$\%\^\&\*\(\)\\/\ ]*\"'
-```
-
-**Missing alt for images:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '(\)'
-```
-
-**Missing type in input:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '()'
-```
-
-**Missing name in form elements:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '()'
-```
-
-**Inline style:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '(style=)'
-```
-
-**Hard coded text in localizable attributes:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '(value|title|alt|aria\-label)(=\")((?!\<\?).)*(>)'
-```
-
-**Hard coded text in localizable tag:**
-
-```sh
-find ./Web ./phpOMS ./Install ./Modules -name "*tpl.php" | xargs grep -P '(\