JSPM

bpmnlint-plugin-my-plugin

0.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q16130F

    The bpmnlint my-plugin plug-in

    Package Exports

    • bpmnlint-plugin-my-plugin
    • bpmnlint-plugin-my-plugin/index.js

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bpmnlint-plugin-my-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    bpmnlint-plugin-my-plugin

    A bpmlint plug-in based on the bpmnlint plug-in example.

    About

    This plugin contributes rules and configuration under the my-plugin prefix to bpmnlint.

    Add Rules

    The ./rules folder contains rules that are made available via this plug-in. Configure them with the my-plugin prefix in your .bpmnlintrc:

    {
      "rules": {
        "my-plugin/no-manual-task": "warn"
      }
    }

    Checkout ./test.js to learn how to test your rules.

    Add Configuration

    As part of the ./index.js the plug-in exposes configurations to extend from using extends in the bpmnlint configuration:

    {
      "extends": [
        "bpmnlint:recommended",
        "plugin:my-plugin/recommended"
      ]
    }