Skip to content

Commit 224471b

Browse files
Ondřej Boudaphilschatz
authored andcommitted
Fix syntax error (#52)
1 parent 7c352bf commit 224471b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extract-rules.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ module.exports = function extractAutomationRules (projects) {
6767
rules.forEach((r) => {
6868
automationRules.push({
6969
column,
70-
r.ruleName,
71-
r.ruleArgs
70+
ruleName: r.ruleName,
71+
ruleArgs: r.ruleArgs
7272
})
7373
})
7474
})

0 commit comments

Comments
 (0)