@nikku , @barmac @philippfromme @Niklas_Kiefer
I am trying to use Bpmnlint for error finding but it not working as expected .
The issue is it shows the error firstTime but it doesn’t update as soon as some of it solved.
It works perfectly after one re-render and keeps updating the errors as they are solved
import BpmnModeler from "bpmn-js/lib/Modeler";
import "bpmn-js-bpmnlint/dist/assets/css/bpmn-js-bpmnlint.css";
import bpmnlintConfig from "../../../bundled-config";
let modeler = {
container: "#bpmnview",
propertiesPanel: {
parent: "#js-properties-panel",
},
linting: {
bpmnlint: bpmnlintConfig,
active: true,
},
additionalModules: [
lintModule,
BpmnPropertiesPanelModule,
BpmnPropertiesProviderModule,
propertiesCustomProviderModule,
minimapModule,
TokenSimulationModule,
{
elementColors: [
"value",
{
add() {},
remove() {},
},
],
},
],
moddleExtensions: {
camunda: camundaModdleDescriptor,
},
};
bpmnModeler = new BpmnModeler({ ...modeler });
This is my code for .bpmnlintrc
{
"extends": "bpmnlint:recommended"
}
I have install bpmn-js-bpmnlint and bpmnlint-pack-config packges.
Could you please help me out here?