Arthur van de Vondervoort

Results 71 comments of Arthur van de Vondervoort

I've created an repo and indeed the rule creates an false positive on this scenario. ![image](https://github.com/StefanMaron/BusinessCentral.LinterCop/assets/44637996/85b470a3-7a4b-428b-9dd9-f6fdf605604e) The rule detects `LABRegistration` and `LabRegistration` as a valid IdentifierName and matches this with...

Repo example ```AL table 50100 "LAB Registration" { fields { field(1; MyField; Integer) { } } } codeunit 50100 FormatAddress { procedure LabRegistration(var LABRegistration: Record "LAB Registration") begin end; }...

The examples you're referring to are indeed valid to assign to the zero ID. I could use your help on how we should change the logic of this rule to...

That was not what I meant 😅 I'm looking for what defines a Enum that is Undefined/None intent? At the moment the rule expects Name (and Caption) need to be...

I'll have to check, but I'm quite certain these will show up in the telemetry as ```Use ERROR with a text constant to improve telemetry details```. So i think this...

I've created an environment where I could access the application insight to review the possible scenario's. To have the content of the message of the error itself in the telemetry,...

I've try'ed to add context about this in the documentation of the rule itself: > When [Analyzing Telemetry](https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/administration/telemetry-overview) with the [Dynamics 365 Business Central Usage Analytics](https://aka.ms/bctelemetryreport) report, having access to...

Thank you for raising this issue ánd providing a PR to resolve this. I've merged this in the (pre)release version of [v0.30.18](https://github.com/StefanMaron/BusinessCentral.LinterCop/releases/tag/v0.30.18) of the LinterCop.

The LinterCop expects the latest AL Language version, currently v13.0.971907. You'll need the add an extra parameter for retrieving the latest vsix, example here; https://github.com/StefanMaron/BusinessCentral.LinterCop/discussions/519#discussioncomment-9245308

Some of our Azure DevOps pipelines failed this night on the `Download-BcNuGetPackageToFolder` step. ```PowerShell Download-BcNuGetPackageToFolder -packageName $($appJsonObj.id) ` -select Latest ` -folder $tempArtifactFolder ` -downloadDependencies none ``` The error messages...