diff --git a/handwritten/storage/system-test/fixtures/index-cjs.js b/handwritten/storage/system-test/fixtures/index-cjs.js index b987f57c0d6..bce3e1f7ac9 100644 --- a/handwritten/storage/system-test/fixtures/index-cjs.js +++ b/handwritten/storage/system-test/fixtures/index-cjs.js @@ -12,10 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable node/no-missing-require, no-unused-vars, no-undef */ +// eslint-disable-next-line no-undef const {Storage} = require('@google-cloud/storage'); function main() { + // eslint-disable-next-line no-unused-vars const storage = new Storage(); } diff --git a/handwritten/storage/system-test/fixtures/index-esm.js b/handwritten/storage/system-test/fixtures/index-esm.js index 92cae36bcc5..bce3e1f7ac9 100644 --- a/handwritten/storage/system-test/fixtures/index-esm.js +++ b/handwritten/storage/system-test/fixtures/index-esm.js @@ -12,10 +12,11 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable node/no-missing-import, no-unused-vars */ -import {Storage} from '@google-cloud/storage'; +// eslint-disable-next-line no-undef +const {Storage} = require('@google-cloud/storage'); function main() { + // eslint-disable-next-line no-unused-vars const storage = new Storage(); }