Skip to content

Commit

Permalink
nolog: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mleutenegger committed Jan 27, 2025
1 parent 6011e4f commit 82eb417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/getRootComposeFile/hostVolumes.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const os = require('os');
function hostVolumes(args) { // eslint-disable-line no-unused-vars
const volumes = {
volumes: [
'${PWD}:/var/www/html',
]
'${PWD}:/var/www/html', // eslint-disable-line no-template-curly-in-string
],
// volumes: [{
// type: 'volume',
// source: 'host_data',
Expand Down
2 changes: 1 addition & 1 deletion docker/getRootComposeFile/volumeDefinition.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const os = require('os');
// const os = require('os');

/**
* getVolumeDefinition - returns the volume definition as needed in the
Expand Down

0 comments on commit 82eb417

Please sign in to comment.