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

@ -26,14 +26,14 @@ Variables declarations should be ordered by type. In general, object and complex
(Ref: [Microsoft Docs](https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/analyzers/codecop-aa0021))
## Bad code
## <span style="color:red">Bad code</span>
```al
StartingDateFilter: Text;
Vendor: Record Vendor;
```
## Good code
## <span style="color:lime">Good code</span>
```al
Vendor: Record Vendor;