综合办公系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
lamphua 9675596be6 oa工作流初始化 1年前
..
docs/rules oa工作流初始化 1年前
rules oa工作流初始化 1年前
.gitignore oa工作流初始化 1年前
README.md oa工作流初始化 1年前
index.js oa工作流初始化 1年前
package.json oa工作流初始化 1年前
test.js oa工作流初始化 1年前

README.md

bpmnlint-plugin-local

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

About

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

Add Rules

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

{
  "rules": {
    "local/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:local/recommended"
  ]
}