Skip to content

Commit

Permalink
feat(secrets): enable rule and report info
Browse files Browse the repository at this point in the history
  • Loading branch information
philippfromme committed Sep 22, 2023
1 parent 8fd5904 commit 1a2e267
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const camundaCloud12Rules = withConfig(camundaCloud11Rules, { version: '1.2' });
const camundaCloud13Rules = withConfig(camundaCloud12Rules, { version: '1.3' });

const camundaCloud80Rules = withConfig({
...omit(camundaCloud13Rules, 'no-template')
...omit(camundaCloud13Rules, 'no-template'),
'secrets': 'info'
}, { version: '8.0' });

const camundaCloud81Rules = withConfig({
Expand Down
2 changes: 1 addition & 1 deletion test/camunda-cloud/integration/secrets.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const versions = [
'8.2'
];

describe.skip('integration - secrets', function() {
describe('integration - secrets', function() {

versions.forEach(function(version) {

Expand Down
4 changes: 4 additions & 0 deletions test/config/configs.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ describe('configs', function() {
'no-propagate-all-parent-variables' : [ 'error', { version: '8.0' } ],
'no-task-schedule': [ 'error', { version: '8.0' } ],
'no-zeebe-properties': [ 'error', { version: '8.0' } ],
'secrets': [ 'info', { version: '8.0' } ],
'sequence-flow-condition': [ 'error', { version: '8.0' } ],
'subscription': [ 'error', { version: '8.0' } ],
'start-form': [ 'error', { version: '8.0' } ],
Expand Down Expand Up @@ -162,6 +163,7 @@ describe('configs', function() {
'no-multiple-none-start-events' : [ 'error', { version: '8.1' } ],
'no-propagate-all-parent-variables' : [ 'error', { version: '8.1' } ],
'no-task-schedule': [ 'error', { version: '8.1' } ],
'secrets': [ 'info', { version: '8.1' } ],
'sequence-flow-condition': [ 'error', { version: '8.1' } ],
'subscription': [ 'error', { version: '8.1' } ],
'start-form': [ 'error', { version: '8.1' } ],
Expand Down Expand Up @@ -190,6 +192,7 @@ describe('configs', function() {
'no-loop': [ 'error', { version: '8.2' } ],
'no-multiple-none-start-events' : [ 'error', { version: '8.2' } ],
'no-signal-event-sub-process': [ 'error', { version: '8.2' } ],
'secrets': [ 'info', { version: '8.2' } ],
'sequence-flow-condition': [ 'error', { version: '8.2' } ],
'subscription': [ 'error', { version: '8.2' } ],
'start-form': [ 'error', { version: '8.2' } ],
Expand Down Expand Up @@ -219,6 +222,7 @@ describe('configs', function() {
'no-loop': [ 'error', { version: '8.3' } ],
'no-multiple-none-start-events' : [ 'error', { version: '8.3' } ],
'no-signal-event-sub-process': [ 'error', { version: '8.3' } ],
'secrets': [ 'info', { version: '8.3' } ],
'sequence-flow-condition': [ 'error', { version: '8.3' } ],
'signal-reference': [ 'error', { version: '8.3' } ],
'subscription': [ 'error', { version: '8.3' } ],
Expand Down

0 comments on commit 1a2e267

Please sign in to comment.