LC0003 - StefanMaron/BusinessCentral.LinterCop GitHub Wiki
LC0003 - Do not use an Object ID for properties or variable declarations
when declaring variables or properties it is still possible to use object ids
var
Customer: Record 18;
However, this is considered bad practice. Its not readable and can not be renamed.
Use object names instead
var
Customer: Record Customer;