Skip to content

Commit e16a09b

Browse files
authored
Merge pull request #137 from lczmdr/ISSUE-110
removed trailing comma in compile functions js
2 parents b68b247 + f4d6a20 commit e16a09b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/lib/compileFunctions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module.exports = {
4545
|| '60s';
4646
funcTemplate.properties.environmentVariables = _.merge(
4747
_.get(this, 'serverless.service.provider.environment'),
48-
funcObject.environment,
48+
funcObject.environment // eslint-disable-line comma-dangle
4949
);
5050

5151
if (!_.size(funcTemplate.properties.environmentVariables)) {

0 commit comments

Comments
 (0)