add colorization to best practice

This commit is contained in:
christianbraeunlich 2022-03-19 21:45:41 +01:00
parent 4fbfc28c9e
commit bd7ea0e118
20 changed files with 58 additions and 59 deletions

View file

@ -9,25 +9,25 @@ _Created by Microsoft, Described by waldo_
## Description
Do not use `true` or `false` keywords unnecessarily if the expression is already an logical expression.
## Bad code
## <span style="color:red">Bad code</span>
```al
if IsPositive() = true then
```
## Good code
## <span style="color:lime">Good code</span>
```al
if IsPositive() then
```
## Bad code
## <span style="color:red">Bad code</span>
```al
if Complete <> true then
```
## Good code
## <span style="color:lime">Good code</span>
```al
if not Complete then