@camunda/linting 3.22.0 → 3.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +75 -75
- package/assets/linting.css +37 -37
- package/lib/Resolver.js +31 -31
- package/lib/compiled-config.js +86 -66
- package/lib/modeler/Linting.js +124 -124
- package/lib/modeler/LintingAnnotations.js +95 -95
- package/lib/modeler/OverlayComponent.js +60 -60
- package/lib/modeler/index.js +10 -10
- package/lib/plugins/bpmnLintPlugin.js +10 -10
- package/lib/plugins/index.js +4 -4
- package/lib/utils/documentation.js +36 -36
- package/lib/utils/error-messages.js +769 -722
- package/lib/utils/properties-panel.js +654 -617
- package/lib/utils/types.js +46 -46
- package/lib/utils/version.js +8 -8
- package/package.json +85 -85
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022-present Camunda Services GmbH
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022-present Camunda Services GmbH
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
# @camunda/linting
|
|
2
|
-
|
|
3
|
-
[](https://github.com/camunda/linting/actions/workflows/CI.yml)
|
|
4
|
-
|
|
5
|
-
The BPMN linter used by the Camunda Desktop and Web Modeler. Batteries included. 🔋
|
|
6
|
-
|
|
7
|
-
## Features
|
|
8
|
-
|
|
9
|
-
* bundles [bpmnlint](https://github.com/bpmn-io/bpmnlint) and [bpmnlint-plugin-camunda-compat](https://github.com/camunda/bpmnlint-plugin-camunda-compat/)
|
|
10
|
-
* configures linter based on `modeler:executionPlatform` and `modeler:executionPlatformVersion`
|
|
11
|
-
* creates error messages to be shown in desktop and web modeler
|
|
12
|
-
* creates errors to be shown in properties panel
|
|
13
|
-
* creates error overlays to be shown on canvas
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
```javascript
|
|
18
|
-
import Modeler from 'bpmn-js/lib/Modeler';
|
|
19
|
-
|
|
20
|
-
import { Linter } from '@camunda/linting';
|
|
21
|
-
|
|
22
|
-
import lintingModule from '@camunda/linting/modeler';
|
|
23
|
-
|
|
24
|
-
import '@camunda/linting/assets/linting.css';
|
|
25
|
-
|
|
26
|
-
const modeler = new Modeler({
|
|
27
|
-
additionalModules: [
|
|
28
|
-
lintingModule
|
|
29
|
-
]
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
// configure to be used with desktop or web modeler
|
|
33
|
-
const linter = new Linter({
|
|
34
|
-
modeler: 'web', // `desktop` or `web` modeler, defaults to `desktop`
|
|
35
|
-
type: 'cloud' // `cloud` or `platform` diagrams, defaults to `cloud`
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
// lint by passing definitions
|
|
39
|
-
const reports = await linter.lint(definitions);
|
|
40
|
-
|
|
41
|
-
// or passing XML
|
|
42
|
-
const reports = await linter.lint(xml);
|
|
43
|
-
|
|
44
|
-
...
|
|
45
|
-
|
|
46
|
-
// update errors on canvas and in properties panel (requires bpmn-js-properties-panel >= 1.3.0)
|
|
47
|
-
modeler.get('linting').setErrors(reports);
|
|
48
|
-
|
|
49
|
-
// show error by selecting element and properties panel entry
|
|
50
|
-
modeler.get('linting').showError(report);
|
|
51
|
-
|
|
52
|
-
// activate and deactivate errors on canvas
|
|
53
|
-
modeler.get('linting').activate();
|
|
54
|
-
modeler.get('linting').deactivate();
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## Development
|
|
58
|
-
|
|
59
|
-
```sh
|
|
60
|
-
# install
|
|
61
|
-
npm i
|
|
62
|
-
|
|
63
|
-
# run tests
|
|
64
|
-
npm t
|
|
65
|
-
|
|
66
|
-
# run tests in watch mode
|
|
67
|
-
npm run test:watch
|
|
68
|
-
|
|
69
|
-
# run example
|
|
70
|
-
npm start
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
## License
|
|
74
|
-
|
|
75
|
-
MIT
|
|
1
|
+
# @camunda/linting
|
|
2
|
+
|
|
3
|
+
[](https://github.com/camunda/linting/actions/workflows/CI.yml)
|
|
4
|
+
|
|
5
|
+
The BPMN linter used by the Camunda Desktop and Web Modeler. Batteries included. 🔋
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
* bundles [bpmnlint](https://github.com/bpmn-io/bpmnlint) and [bpmnlint-plugin-camunda-compat](https://github.com/camunda/bpmnlint-plugin-camunda-compat/)
|
|
10
|
+
* configures linter based on `modeler:executionPlatform` and `modeler:executionPlatformVersion`
|
|
11
|
+
* creates error messages to be shown in desktop and web modeler
|
|
12
|
+
* creates errors to be shown in properties panel
|
|
13
|
+
* creates error overlays to be shown on canvas
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```javascript
|
|
18
|
+
import Modeler from 'bpmn-js/lib/Modeler';
|
|
19
|
+
|
|
20
|
+
import { Linter } from '@camunda/linting';
|
|
21
|
+
|
|
22
|
+
import lintingModule from '@camunda/linting/modeler';
|
|
23
|
+
|
|
24
|
+
import '@camunda/linting/assets/linting.css';
|
|
25
|
+
|
|
26
|
+
const modeler = new Modeler({
|
|
27
|
+
additionalModules: [
|
|
28
|
+
lintingModule
|
|
29
|
+
]
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
// configure to be used with desktop or web modeler
|
|
33
|
+
const linter = new Linter({
|
|
34
|
+
modeler: 'web', // `desktop` or `web` modeler, defaults to `desktop`
|
|
35
|
+
type: 'cloud' // `cloud` or `platform` diagrams, defaults to `cloud`
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
// lint by passing definitions
|
|
39
|
+
const reports = await linter.lint(definitions);
|
|
40
|
+
|
|
41
|
+
// or passing XML
|
|
42
|
+
const reports = await linter.lint(xml);
|
|
43
|
+
|
|
44
|
+
...
|
|
45
|
+
|
|
46
|
+
// update errors on canvas and in properties panel (requires bpmn-js-properties-panel >= 1.3.0)
|
|
47
|
+
modeler.get('linting').setErrors(reports);
|
|
48
|
+
|
|
49
|
+
// show error by selecting element and properties panel entry
|
|
50
|
+
modeler.get('linting').showError(report);
|
|
51
|
+
|
|
52
|
+
// activate and deactivate errors on canvas
|
|
53
|
+
modeler.get('linting').activate();
|
|
54
|
+
modeler.get('linting').deactivate();
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Development
|
|
58
|
+
|
|
59
|
+
```sh
|
|
60
|
+
# install
|
|
61
|
+
npm i
|
|
62
|
+
|
|
63
|
+
# run tests
|
|
64
|
+
npm t
|
|
65
|
+
|
|
66
|
+
# run tests in watch mode
|
|
67
|
+
npm run test:watch
|
|
68
|
+
|
|
69
|
+
# run example
|
|
70
|
+
npm start
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
MIT
|
package/assets/linting.css
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--cl-color-white: hsl(0, 0%, 100%);
|
|
3
|
-
|
|
4
|
-
--cl-color-info: #0f62fe;
|
|
5
|
-
--cl-color-warning: #ff832b;
|
|
6
|
-
--cl-color-error: #da1e26;
|
|
7
|
-
--cl-color-success: #52b415;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.cl-icon, .cl-icon * {
|
|
11
|
-
box-sizing: border-box;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.cl-icon {
|
|
15
|
-
--icon-color: white;
|
|
16
|
-
--icon-bg-color: #333;
|
|
17
|
-
background: var(--icon-bg-color);
|
|
18
|
-
color: var(--icon-color);
|
|
19
|
-
border-radius: 100%;
|
|
20
|
-
height: 20px;
|
|
21
|
-
width: 20px;
|
|
22
|
-
border: solid 4px var(--icon-bg-color);
|
|
23
|
-
display: flex;
|
|
24
|
-
align-items: center;
|
|
25
|
-
justify-content: center;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.cl-icon-error {
|
|
29
|
-
--icon-bg-color: var(--cl-color-error);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.cl-icon-warn {
|
|
33
|
-
--icon-bg-color: var(--cl-color-warning);
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.cl-icon-info {
|
|
37
|
-
--icon-bg-color: var(--cl-color-info);
|
|
1
|
+
:root {
|
|
2
|
+
--cl-color-white: hsl(0, 0%, 100%);
|
|
3
|
+
|
|
4
|
+
--cl-color-info: #0f62fe;
|
|
5
|
+
--cl-color-warning: #ff832b;
|
|
6
|
+
--cl-color-error: #da1e26;
|
|
7
|
+
--cl-color-success: #52b415;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cl-icon, .cl-icon * {
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.cl-icon {
|
|
15
|
+
--icon-color: white;
|
|
16
|
+
--icon-bg-color: #333;
|
|
17
|
+
background: var(--icon-bg-color);
|
|
18
|
+
color: var(--icon-color);
|
|
19
|
+
border-radius: 100%;
|
|
20
|
+
height: 20px;
|
|
21
|
+
width: 20px;
|
|
22
|
+
border: solid 4px var(--icon-bg-color);
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
justify-content: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.cl-icon-error {
|
|
29
|
+
--icon-bg-color: var(--cl-color-error);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.cl-icon-warn {
|
|
33
|
+
--icon-bg-color: var(--cl-color-warning);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.cl-icon-info {
|
|
37
|
+
--icon-bg-color: var(--cl-color-info);
|
|
38
38
|
}
|
package/lib/Resolver.js
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export default class NestedResolver {
|
|
2
|
-
constructor(resolvers) {
|
|
3
|
-
this.resolvers = resolvers.slice().reverse();
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
resolveRule(pkg, ruleName) {
|
|
7
|
-
for (const resolver of this.resolvers) {
|
|
8
|
-
try {
|
|
9
|
-
return resolver.resolveRule(pkg, ruleName);
|
|
10
|
-
} catch (err) {
|
|
11
|
-
|
|
12
|
-
// ignore
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
throw new Error(`unknown rule <${ pkg }/${ ruleName }>`);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
resolveConfig(pkg, configName) {
|
|
20
|
-
for (const resolver of this.resolvers) {
|
|
21
|
-
try {
|
|
22
|
-
return resolver.resolveConfig(pkg, configName);
|
|
23
|
-
} catch (err) {
|
|
24
|
-
|
|
25
|
-
// ignore
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
throw new Error(`unknown config <${ pkg }/${ configName }>`);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
1
|
+
export default class NestedResolver {
|
|
2
|
+
constructor(resolvers) {
|
|
3
|
+
this.resolvers = resolvers.slice().reverse();
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
resolveRule(pkg, ruleName) {
|
|
7
|
+
for (const resolver of this.resolvers) {
|
|
8
|
+
try {
|
|
9
|
+
return resolver.resolveRule(pkg, ruleName);
|
|
10
|
+
} catch (err) {
|
|
11
|
+
|
|
12
|
+
// ignore
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
throw new Error(`unknown rule <${ pkg }/${ ruleName }>`);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
resolveConfig(pkg, configName) {
|
|
20
|
+
for (const resolver of this.resolvers) {
|
|
21
|
+
try {
|
|
22
|
+
return resolver.resolveConfig(pkg, configName);
|
|
23
|
+
} catch (err) {
|
|
24
|
+
|
|
25
|
+
// ignore
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
throw new Error(`unknown config <${ pkg }/${ configName }>`);
|
|
30
|
+
}
|
|
31
|
+
}
|
package/lib/compiled-config.js
CHANGED
|
@@ -33,12 +33,14 @@ const rules = {
|
|
|
33
33
|
"camunda-compat/called-element": "error",
|
|
34
34
|
"camunda-compat/collapsed-subprocess": "error",
|
|
35
35
|
"camunda-compat/connector-properties": "warn",
|
|
36
|
+
"camunda-compat/duplicate-execution-listeners": "error",
|
|
36
37
|
"camunda-compat/duplicate-task-headers": "error",
|
|
37
38
|
"camunda-compat/error-reference": "error",
|
|
38
39
|
"camunda-compat/escalation-boundary-event-attached-to-ref": "error",
|
|
39
40
|
"camunda-compat/escalation-reference": "error",
|
|
40
41
|
"camunda-compat/event-based-gateway-target": "error",
|
|
41
42
|
"camunda-compat/executable-process": "error",
|
|
43
|
+
"camunda-compat/execution-listener": "error",
|
|
42
44
|
"camunda-compat/feel": "error",
|
|
43
45
|
"camunda-compat/history-time-to-live": "info",
|
|
44
46
|
"camunda-compat/implementation": "error",
|
|
@@ -46,7 +48,9 @@ const rules = {
|
|
|
46
48
|
"camunda-compat/link-event": "error",
|
|
47
49
|
"camunda-compat/loop-characteristics": "error",
|
|
48
50
|
"camunda-compat/message-reference": "error",
|
|
51
|
+
"camunda-compat/no-binding-type": "error",
|
|
49
52
|
"camunda-compat/no-candidate-users": "error",
|
|
53
|
+
"camunda-compat/no-execution-listeners": "error",
|
|
50
54
|
"camunda-compat/no-expression": "error",
|
|
51
55
|
"camunda-compat/no-loop": "error",
|
|
52
56
|
"camunda-compat/no-multiple-none-start-events": "error",
|
|
@@ -97,134 +101,150 @@ import rule_3 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/connector
|
|
|
97
101
|
|
|
98
102
|
cache['bpmnlint-plugin-camunda-compat/connector-properties'] = rule_3;
|
|
99
103
|
|
|
100
|
-
import rule_4 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/duplicate-
|
|
104
|
+
import rule_4 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/duplicate-execution-listeners';
|
|
101
105
|
|
|
102
|
-
cache['bpmnlint-plugin-camunda-compat/duplicate-
|
|
106
|
+
cache['bpmnlint-plugin-camunda-compat/duplicate-execution-listeners'] = rule_4;
|
|
103
107
|
|
|
104
|
-
import rule_5 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
108
|
+
import rule_5 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/duplicate-task-headers';
|
|
105
109
|
|
|
106
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
110
|
+
cache['bpmnlint-plugin-camunda-compat/duplicate-task-headers'] = rule_5;
|
|
107
111
|
|
|
108
|
-
import rule_6 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
112
|
+
import rule_6 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/error-reference';
|
|
109
113
|
|
|
110
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
114
|
+
cache['bpmnlint-plugin-camunda-compat/error-reference'] = rule_6;
|
|
111
115
|
|
|
112
|
-
import rule_7 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/escalation-
|
|
116
|
+
import rule_7 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/escalation-boundary-event-attached-to-ref';
|
|
113
117
|
|
|
114
|
-
cache['bpmnlint-plugin-camunda-compat/escalation-
|
|
118
|
+
cache['bpmnlint-plugin-camunda-compat/escalation-boundary-event-attached-to-ref'] = rule_7;
|
|
115
119
|
|
|
116
|
-
import rule_8 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
120
|
+
import rule_8 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/escalation-reference';
|
|
117
121
|
|
|
118
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
122
|
+
cache['bpmnlint-plugin-camunda-compat/escalation-reference'] = rule_8;
|
|
119
123
|
|
|
120
|
-
import rule_9 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
124
|
+
import rule_9 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/event-based-gateway-target';
|
|
121
125
|
|
|
122
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
126
|
+
cache['bpmnlint-plugin-camunda-compat/event-based-gateway-target'] = rule_9;
|
|
123
127
|
|
|
124
|
-
import rule_10 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
128
|
+
import rule_10 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/executable-process';
|
|
125
129
|
|
|
126
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
130
|
+
cache['bpmnlint-plugin-camunda-compat/executable-process'] = rule_10;
|
|
127
131
|
|
|
128
|
-
import rule_11 from 'bpmnlint-plugin-camunda-compat/rules/camunda-
|
|
132
|
+
import rule_11 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/execution-listener';
|
|
129
133
|
|
|
130
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
134
|
+
cache['bpmnlint-plugin-camunda-compat/execution-listener'] = rule_11;
|
|
131
135
|
|
|
132
|
-
import rule_12 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
136
|
+
import rule_12 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/feel';
|
|
133
137
|
|
|
134
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
138
|
+
cache['bpmnlint-plugin-camunda-compat/feel'] = rule_12;
|
|
135
139
|
|
|
136
|
-
import rule_13 from 'bpmnlint-plugin-camunda-compat/rules/camunda-
|
|
140
|
+
import rule_13 from 'bpmnlint-plugin-camunda-compat/rules/camunda-platform/history-time-to-live';
|
|
137
141
|
|
|
138
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
142
|
+
cache['bpmnlint-plugin-camunda-compat/history-time-to-live'] = rule_13;
|
|
139
143
|
|
|
140
|
-
import rule_14 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
144
|
+
import rule_14 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/implementation';
|
|
141
145
|
|
|
142
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
146
|
+
cache['bpmnlint-plugin-camunda-compat/implementation'] = rule_14;
|
|
143
147
|
|
|
144
|
-
import rule_15 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
148
|
+
import rule_15 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/inclusive-gateway';
|
|
145
149
|
|
|
146
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
150
|
+
cache['bpmnlint-plugin-camunda-compat/inclusive-gateway'] = rule_15;
|
|
147
151
|
|
|
148
|
-
import rule_16 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
152
|
+
import rule_16 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/link-event';
|
|
149
153
|
|
|
150
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
154
|
+
cache['bpmnlint-plugin-camunda-compat/link-event'] = rule_16;
|
|
151
155
|
|
|
152
|
-
import rule_17 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
156
|
+
import rule_17 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/loop-characteristics';
|
|
153
157
|
|
|
154
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
158
|
+
cache['bpmnlint-plugin-camunda-compat/loop-characteristics'] = rule_17;
|
|
155
159
|
|
|
156
|
-
import rule_18 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
160
|
+
import rule_18 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/message-reference';
|
|
157
161
|
|
|
158
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
162
|
+
cache['bpmnlint-plugin-camunda-compat/message-reference'] = rule_18;
|
|
159
163
|
|
|
160
|
-
import rule_19 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
164
|
+
import rule_19 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-binding-type';
|
|
161
165
|
|
|
162
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
166
|
+
cache['bpmnlint-plugin-camunda-compat/no-binding-type'] = rule_19;
|
|
163
167
|
|
|
164
|
-
import rule_20 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
168
|
+
import rule_20 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-candidate-users';
|
|
165
169
|
|
|
166
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
170
|
+
cache['bpmnlint-plugin-camunda-compat/no-candidate-users'] = rule_20;
|
|
167
171
|
|
|
168
|
-
import rule_21 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
172
|
+
import rule_21 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-execution-listeners';
|
|
169
173
|
|
|
170
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
174
|
+
cache['bpmnlint-plugin-camunda-compat/no-execution-listeners'] = rule_21;
|
|
171
175
|
|
|
172
|
-
import rule_22 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
176
|
+
import rule_22 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-expression';
|
|
173
177
|
|
|
174
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
178
|
+
cache['bpmnlint-plugin-camunda-compat/no-expression'] = rule_22;
|
|
175
179
|
|
|
176
|
-
import rule_23 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
180
|
+
import rule_23 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-loop';
|
|
177
181
|
|
|
178
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
182
|
+
cache['bpmnlint-plugin-camunda-compat/no-loop'] = rule_23;
|
|
179
183
|
|
|
180
|
-
import rule_24 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
184
|
+
import rule_24 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-multiple-none-start-events';
|
|
181
185
|
|
|
182
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
186
|
+
cache['bpmnlint-plugin-camunda-compat/no-multiple-none-start-events'] = rule_24;
|
|
183
187
|
|
|
184
|
-
import rule_25 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
188
|
+
import rule_25 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-propagate-all-parent-variables';
|
|
185
189
|
|
|
186
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
190
|
+
cache['bpmnlint-plugin-camunda-compat/no-propagate-all-parent-variables'] = rule_25;
|
|
187
191
|
|
|
188
|
-
import rule_26 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-
|
|
192
|
+
import rule_26 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-signal-event-sub-process';
|
|
189
193
|
|
|
190
|
-
cache['bpmnlint-plugin-camunda-compat/no-
|
|
194
|
+
cache['bpmnlint-plugin-camunda-compat/no-signal-event-sub-process'] = rule_26;
|
|
191
195
|
|
|
192
|
-
import rule_27 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
196
|
+
import rule_27 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-task-schedule';
|
|
193
197
|
|
|
194
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
198
|
+
cache['bpmnlint-plugin-camunda-compat/no-task-schedule'] = rule_27;
|
|
195
199
|
|
|
196
|
-
import rule_28 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
200
|
+
import rule_28 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-template';
|
|
197
201
|
|
|
198
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
202
|
+
cache['bpmnlint-plugin-camunda-compat/no-template'] = rule_28;
|
|
199
203
|
|
|
200
|
-
import rule_29 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
204
|
+
import rule_29 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-zeebe-properties';
|
|
201
205
|
|
|
202
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
206
|
+
cache['bpmnlint-plugin-camunda-compat/no-zeebe-properties'] = rule_29;
|
|
203
207
|
|
|
204
|
-
import rule_30 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
208
|
+
import rule_30 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/no-zeebe-user-task';
|
|
205
209
|
|
|
206
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
210
|
+
cache['bpmnlint-plugin-camunda-compat/no-zeebe-user-task'] = rule_30;
|
|
207
211
|
|
|
208
|
-
import rule_31 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
212
|
+
import rule_31 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/secrets';
|
|
209
213
|
|
|
210
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
214
|
+
cache['bpmnlint-plugin-camunda-compat/secrets'] = rule_31;
|
|
211
215
|
|
|
212
|
-
import rule_32 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
216
|
+
import rule_32 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/sequence-flow-condition';
|
|
213
217
|
|
|
214
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
218
|
+
cache['bpmnlint-plugin-camunda-compat/sequence-flow-condition'] = rule_32;
|
|
215
219
|
|
|
216
|
-
import rule_33 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
220
|
+
import rule_33 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/signal-reference';
|
|
217
221
|
|
|
218
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
222
|
+
cache['bpmnlint-plugin-camunda-compat/signal-reference'] = rule_33;
|
|
219
223
|
|
|
220
|
-
import rule_34 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
224
|
+
import rule_34 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/start-event-form';
|
|
221
225
|
|
|
222
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
226
|
+
cache['bpmnlint-plugin-camunda-compat/start-event-form'] = rule_34;
|
|
223
227
|
|
|
224
|
-
import rule_35 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
228
|
+
import rule_35 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/subscription';
|
|
225
229
|
|
|
226
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
230
|
+
cache['bpmnlint-plugin-camunda-compat/subscription'] = rule_35;
|
|
227
231
|
|
|
228
|
-
import rule_36 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/
|
|
232
|
+
import rule_36 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/task-schedule';
|
|
229
233
|
|
|
230
|
-
cache['bpmnlint-plugin-camunda-compat/
|
|
234
|
+
cache['bpmnlint-plugin-camunda-compat/task-schedule'] = rule_36;
|
|
235
|
+
|
|
236
|
+
import rule_37 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/timer';
|
|
237
|
+
|
|
238
|
+
cache['bpmnlint-plugin-camunda-compat/timer'] = rule_37;
|
|
239
|
+
|
|
240
|
+
import rule_38 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/user-task-definition';
|
|
241
|
+
|
|
242
|
+
cache['bpmnlint-plugin-camunda-compat/user-task-definition'] = rule_38;
|
|
243
|
+
|
|
244
|
+
import rule_39 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/user-task-form';
|
|
245
|
+
|
|
246
|
+
cache['bpmnlint-plugin-camunda-compat/user-task-form'] = rule_39;
|
|
247
|
+
|
|
248
|
+
import rule_40 from 'bpmnlint-plugin-camunda-compat/rules/camunda-cloud/wait-for-completion';
|
|
249
|
+
|
|
250
|
+
cache['bpmnlint-plugin-camunda-compat/wait-for-completion'] = rule_40;
|