diff --git a/index.js b/index.js index 1f097f12..f7d7c38c 100644 --- a/index.js +++ b/index.js @@ -50,7 +50,7 @@ const camundaCloud82Rules = withConfig({ }, { version: '8.2' }); const camundaCloud83Rules = withConfig({ - ...camundaCloud82Rules, + ...omit(camundaCloud82Rules, 'inclusive-gateway'), 'signal-reference': 'error' }, { version: '8.3' }); diff --git a/test/config/configs.spec.js b/test/config/configs.spec.js index f48b5e28..5933306e 100644 --- a/test/config/configs.spec.js +++ b/test/config/configs.spec.js @@ -188,7 +188,6 @@ describe('configs', function() { 'event-based-gateway-target': [ 'error', { version: '8.3' } ], 'executable-process': [ 'error', { version: '8.3' } ], 'feel': [ 'error', { version: '8.3' } ], - 'inclusive-gateway': [ 'error', { version: '8.3' } ], 'loop-characteristics': [ 'error', { version: '8.3' } ], 'message-reference': [ 'error', { version: '8.3' } ], 'no-expression': [ 'error', { version: '8.3' } ],