diff --git a/datacatalog/cloud-client/createEntryGroup.js b/datacatalog/cloud-client/createEntryGroup.js index 4653353909..503c9fe314 100644 --- a/datacatalog/cloud-client/createEntryGroup.js +++ b/datacatalog/cloud-client/createEntryGroup.js @@ -1,5 +1,3 @@ -/* eslint-disable no-warning-comments */ - // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/datacatalog/cloud-client/createFilesetEntry.js b/datacatalog/cloud-client/createFilesetEntry.js index dd2386e424..9aa549ecdb 100644 --- a/datacatalog/cloud-client/createFilesetEntry.js +++ b/datacatalog/cloud-client/createFilesetEntry.js @@ -1,5 +1,3 @@ -/* eslint-disable no-warning-comments */ - // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/datacatalog/cloud-client/lookupEntry.js b/datacatalog/cloud-client/lookupEntry.js index a29983b90f..28b9341b3c 100644 --- a/datacatalog/cloud-client/lookupEntry.js +++ b/datacatalog/cloud-client/lookupEntry.js @@ -1,5 +1,3 @@ -/* eslint-disable no-warning-comments */ - // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/datacatalog/quickstart/createFilesetEntry.js b/datacatalog/quickstart/createFilesetEntry.js index bc127567d5..a29de4217b 100644 --- a/datacatalog/quickstart/createFilesetEntry.js +++ b/datacatalog/quickstart/createFilesetEntry.js @@ -1,5 +1,3 @@ -/* eslint-disable no-warning-comments */ - // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/datacatalog/quickstart/deleteFilesetEntry.js b/datacatalog/quickstart/deleteFilesetEntry.js index 9f839ea051..b331e4cd5a 100644 --- a/datacatalog/quickstart/deleteFilesetEntry.js +++ b/datacatalog/quickstart/deleteFilesetEntry.js @@ -1,5 +1,3 @@ -/* eslint-disable no-warning-comments */ - // Copyright 2019 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/datastore/functions/test/.eslintrc.yml b/datastore/functions/test/.eslintrc.yml deleted file mode 100644 index 07583b99db..0000000000 --- a/datastore/functions/test/.eslintrc.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -rules: - no-warning-comments: off - diff --git a/functions/billing/index.js b/functions/billing/index.js index 54b5008f1e..6c8e10a747 100644 --- a/functions/billing/index.js +++ b/functions/billing/index.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - // [START functions_billing_limit] // [START functions_billing_stop] const {google} = require('googleapis'); diff --git a/functions/helloworld/.eslintrc.yml b/functions/helloworld/.eslintrc.yml index 913c1b13f9..e8cc274761 100644 --- a/functions/helloworld/.eslintrc.yml +++ b/functions/helloworld/.eslintrc.yml @@ -1,5 +1,4 @@ --- rules: - no-warning-comments: off no-unused-vars: off diff --git a/functions/http/.eslintrc.yml b/functions/http/.eslintrc.yml deleted file mode 100644 index 07583b99db..0000000000 --- a/functions/http/.eslintrc.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- -rules: - no-warning-comments: off - diff --git a/functions/http/index.js b/functions/http/index.js index e44abe44be..b65047b477 100644 --- a/functions/http/index.js +++ b/functions/http/index.js @@ -135,7 +135,9 @@ exports.uploadFile = (req, res) => { // This code will process each non-file field in the form. busboy.on('field', (fieldname, val) => { - // TODO(developer): Process submitted field values here + /** + * TODO(developer): Process submitted field values here + */ console.log(`Processed field ${fieldname}: ${val}.`); fields[fieldname] = val; }); @@ -172,7 +174,9 @@ exports.uploadFile = (req, res) => { busboy.on('finish', async () => { await Promise.all(fileWrites); - // TODO(developer): Process saved files here + /** + * TODO(developer): Process saved files here + */ for (const file in uploads) { fs.unlinkSync(uploads[file]); } diff --git a/healthcare/datasets/createDataset.js b/healthcare/datasets/createDataset.js index 69d1fea55d..1306ede1cf 100644 --- a/healthcare/datasets/createDataset.js +++ b/healthcare/datasets/createDataset.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/deidentifyDataset.js b/healthcare/datasets/deidentifyDataset.js index 3123b7fc5b..81ba4c4913 100644 --- a/healthcare/datasets/deidentifyDataset.js +++ b/healthcare/datasets/deidentifyDataset.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/deleteDataset.js b/healthcare/datasets/deleteDataset.js index fc15d84987..de516b865b 100644 --- a/healthcare/datasets/deleteDataset.js +++ b/healthcare/datasets/deleteDataset.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/getDataset.js b/healthcare/datasets/getDataset.js index 8e2a560061..62ce9d07aa 100644 --- a/healthcare/datasets/getDataset.js +++ b/healthcare/datasets/getDataset.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/getDatasetIamPolicy.js b/healthcare/datasets/getDatasetIamPolicy.js index e2b401c3c4..c5b36b9109 100644 --- a/healthcare/datasets/getDatasetIamPolicy.js +++ b/healthcare/datasets/getDatasetIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/listDatasets.js b/healthcare/datasets/listDatasets.js index 0bb6eda987..6724d4f9bf 100644 --- a/healthcare/datasets/listDatasets.js +++ b/healthcare/datasets/listDatasets.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/patchDataset.js b/healthcare/datasets/patchDataset.js index 1601b1e098..6ba011a71c 100644 --- a/healthcare/datasets/patchDataset.js +++ b/healthcare/datasets/patchDataset.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/datasets/setDatasetIamPolicy.js b/healthcare/datasets/setDatasetIamPolicy.js index 12c9ef8150..a9749664f3 100644 --- a/healthcare/datasets/setDatasetIamPolicy.js +++ b/healthcare/datasets/setDatasetIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/createDicomStore.js b/healthcare/dicom/createDicomStore.js index 73567736ce..d71b2f5067 100644 --- a/healthcare/dicom/createDicomStore.js +++ b/healthcare/dicom/createDicomStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/deleteDicomStore.js b/healthcare/dicom/deleteDicomStore.js index b1a6c1b6e2..f49478e475 100644 --- a/healthcare/dicom/deleteDicomStore.js +++ b/healthcare/dicom/deleteDicomStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebDeleteStudy.js b/healthcare/dicom/dicomWebDeleteStudy.js index bd08f4ad7d..dae74eea31 100644 --- a/healthcare/dicom/dicomWebDeleteStudy.js +++ b/healthcare/dicom/dicomWebDeleteStudy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebRetrieveInstance.js b/healthcare/dicom/dicomWebRetrieveInstance.js index 7106979a10..e045cc4c1b 100644 --- a/healthcare/dicom/dicomWebRetrieveInstance.js +++ b/healthcare/dicom/dicomWebRetrieveInstance.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebRetrieveRendered.js b/healthcare/dicom/dicomWebRetrieveRendered.js index 554215f189..c2c87f3228 100644 --- a/healthcare/dicom/dicomWebRetrieveRendered.js +++ b/healthcare/dicom/dicomWebRetrieveRendered.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebRetrieveStudy.js b/healthcare/dicom/dicomWebRetrieveStudy.js index 2940c71747..5831178952 100644 --- a/healthcare/dicom/dicomWebRetrieveStudy.js +++ b/healthcare/dicom/dicomWebRetrieveStudy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebSearchForInstances.js b/healthcare/dicom/dicomWebSearchForInstances.js index 22d85705b4..118d723407 100644 --- a/healthcare/dicom/dicomWebSearchForInstances.js +++ b/healthcare/dicom/dicomWebSearchForInstances.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebSearchStudies.js b/healthcare/dicom/dicomWebSearchStudies.js index 3bd7bf60d2..46710932da 100644 --- a/healthcare/dicom/dicomWebSearchStudies.js +++ b/healthcare/dicom/dicomWebSearchStudies.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/dicomWebStoreInstance.js b/healthcare/dicom/dicomWebStoreInstance.js index 3a33f16aad..93219e5a55 100644 --- a/healthcare/dicom/dicomWebStoreInstance.js +++ b/healthcare/dicom/dicomWebStoreInstance.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/exportDicomInstanceGcs.js b/healthcare/dicom/exportDicomInstanceGcs.js index 7ea3963a57..59e075b845 100644 --- a/healthcare/dicom/exportDicomInstanceGcs.js +++ b/healthcare/dicom/exportDicomInstanceGcs.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/getDicomStore.js b/healthcare/dicom/getDicomStore.js index 48ed847b4e..9aa42a2975 100644 --- a/healthcare/dicom/getDicomStore.js +++ b/healthcare/dicom/getDicomStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/getDicomStoreIamPolicy.js b/healthcare/dicom/getDicomStoreIamPolicy.js index ad51f762ab..170a76cd0e 100644 --- a/healthcare/dicom/getDicomStoreIamPolicy.js +++ b/healthcare/dicom/getDicomStoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/importDicomInstance.js b/healthcare/dicom/importDicomInstance.js index e0a40b4839..de92cc7328 100644 --- a/healthcare/dicom/importDicomInstance.js +++ b/healthcare/dicom/importDicomInstance.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/listDicomStores.js b/healthcare/dicom/listDicomStores.js index d68ba82661..18dac53f12 100644 --- a/healthcare/dicom/listDicomStores.js +++ b/healthcare/dicom/listDicomStores.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/patchDicomStore.js b/healthcare/dicom/patchDicomStore.js index 8dc63c3826..ac12b24c5a 100644 --- a/healthcare/dicom/patchDicomStore.js +++ b/healthcare/dicom/patchDicomStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/dicom/setDicomStoreIamPolicy.js b/healthcare/dicom/setDicomStoreIamPolicy.js index d6cf2bed43..9870f890de 100644 --- a/healthcare/dicom/setDicomStoreIamPolicy.js +++ b/healthcare/dicom/setDicomStoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/createFhirStore.js b/healthcare/fhir/createFhirStore.js index 29b7c5958d..b28db28e55 100644 --- a/healthcare/fhir/createFhirStore.js +++ b/healthcare/fhir/createFhirStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/deleteFhirResource.js b/healthcare/fhir/deleteFhirResource.js index c4e1581bb5..016a76a27c 100644 --- a/healthcare/fhir/deleteFhirResource.js +++ b/healthcare/fhir/deleteFhirResource.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/deleteFhirResourcePurge.js b/healthcare/fhir/deleteFhirResourcePurge.js index 699259f212..9a869df1c6 100644 --- a/healthcare/fhir/deleteFhirResourcePurge.js +++ b/healthcare/fhir/deleteFhirResourcePurge.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/deleteFhirStore.js b/healthcare/fhir/deleteFhirStore.js index 5fabbadd33..cb6a440c83 100644 --- a/healthcare/fhir/deleteFhirStore.js +++ b/healthcare/fhir/deleteFhirStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/exportFhirResources.js b/healthcare/fhir/exportFhirResources.js index 1e4b167494..16e93bcb79 100644 --- a/healthcare/fhir/exportFhirResources.js +++ b/healthcare/fhir/exportFhirResources.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getFhirResource.js b/healthcare/fhir/getFhirResource.js index 48774b844e..42e475331e 100644 --- a/healthcare/fhir/getFhirResource.js +++ b/healthcare/fhir/getFhirResource.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getFhirResourceHistory.js b/healthcare/fhir/getFhirResourceHistory.js index eaff2c7c85..25732b9d33 100644 --- a/healthcare/fhir/getFhirResourceHistory.js +++ b/healthcare/fhir/getFhirResourceHistory.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getFhirStore.js b/healthcare/fhir/getFhirStore.js index b050aa99d9..cadddd97e5 100644 --- a/healthcare/fhir/getFhirStore.js +++ b/healthcare/fhir/getFhirStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getFhirStoreCapabilities.js b/healthcare/fhir/getFhirStoreCapabilities.js index d8b1eb2d25..9b58a331aa 100644 --- a/healthcare/fhir/getFhirStoreCapabilities.js +++ b/healthcare/fhir/getFhirStoreCapabilities.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getFhirStoreIamPolicy.js b/healthcare/fhir/getFhirStoreIamPolicy.js index e6e0efbcd3..a732b0547f 100644 --- a/healthcare/fhir/getFhirStoreIamPolicy.js +++ b/healthcare/fhir/getFhirStoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/getPatientEverything.js b/healthcare/fhir/getPatientEverything.js index 2b22433074..d0c0afdb67 100644 --- a/healthcare/fhir/getPatientEverything.js +++ b/healthcare/fhir/getPatientEverything.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/importFhirResources.js b/healthcare/fhir/importFhirResources.js index 1858254706..4e6da28dec 100644 --- a/healthcare/fhir/importFhirResources.js +++ b/healthcare/fhir/importFhirResources.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/listFhirResourceHistory.js b/healthcare/fhir/listFhirResourceHistory.js index aa7d3d24cf..7b31a5b05b 100644 --- a/healthcare/fhir/listFhirResourceHistory.js +++ b/healthcare/fhir/listFhirResourceHistory.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/listFhirStores.js b/healthcare/fhir/listFhirStores.js index 53a5840388..b6123111c3 100644 --- a/healthcare/fhir/listFhirStores.js +++ b/healthcare/fhir/listFhirStores.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/patchFhirStore.js b/healthcare/fhir/patchFhirStore.js index 0267264974..dd1001e0d3 100644 --- a/healthcare/fhir/patchFhirStore.js +++ b/healthcare/fhir/patchFhirStore.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/searchFhirResourcesGet.js b/healthcare/fhir/searchFhirResourcesGet.js index 90d8eab07a..f761db5bff 100644 --- a/healthcare/fhir/searchFhirResourcesGet.js +++ b/healthcare/fhir/searchFhirResourcesGet.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/searchFhirResourcesPost.js b/healthcare/fhir/searchFhirResourcesPost.js index c75ea1c0ed..2a476a3776 100644 --- a/healthcare/fhir/searchFhirResourcesPost.js +++ b/healthcare/fhir/searchFhirResourcesPost.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/setFhirStoreIamPolicy.js b/healthcare/fhir/setFhirStoreIamPolicy.js index c869ca96ff..a1dff1dcd6 100644 --- a/healthcare/fhir/setFhirStoreIamPolicy.js +++ b/healthcare/fhir/setFhirStoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/fhir/updateFhirResource.js b/healthcare/fhir/updateFhirResource.js index 9bde7051b3..685f14f578 100644 --- a/healthcare/fhir/updateFhirResource.js +++ b/healthcare/fhir/updateFhirResource.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/createHl7v2Message.js b/healthcare/hl7v2/createHl7v2Message.js index 6972c76d19..193ba6d096 100644 --- a/healthcare/hl7v2/createHl7v2Message.js +++ b/healthcare/hl7v2/createHl7v2Message.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/createHl7v2Store.js b/healthcare/hl7v2/createHl7v2Store.js index ac32c044b9..c1e1648724 100644 --- a/healthcare/hl7v2/createHl7v2Store.js +++ b/healthcare/hl7v2/createHl7v2Store.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/deleteHl7v2Message.js b/healthcare/hl7v2/deleteHl7v2Message.js index 1ff29ecb4a..3e05e9f192 100644 --- a/healthcare/hl7v2/deleteHl7v2Message.js +++ b/healthcare/hl7v2/deleteHl7v2Message.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/deleteHl7v2Store.js b/healthcare/hl7v2/deleteHl7v2Store.js index f496dbca2d..7ab0182790 100644 --- a/healthcare/hl7v2/deleteHl7v2Store.js +++ b/healthcare/hl7v2/deleteHl7v2Store.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/getHl7v2Message.js b/healthcare/hl7v2/getHl7v2Message.js index 472b7517e8..3a472bf35b 100644 --- a/healthcare/hl7v2/getHl7v2Message.js +++ b/healthcare/hl7v2/getHl7v2Message.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/getHl7v2Store.js b/healthcare/hl7v2/getHl7v2Store.js index 3a60981086..215c165d6c 100644 --- a/healthcare/hl7v2/getHl7v2Store.js +++ b/healthcare/hl7v2/getHl7v2Store.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/getHl7v2StoreIamPolicy.js b/healthcare/hl7v2/getHl7v2StoreIamPolicy.js index 5e997ffc49..3b403c8f72 100644 --- a/healthcare/hl7v2/getHl7v2StoreIamPolicy.js +++ b/healthcare/hl7v2/getHl7v2StoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/ingestHl7v2Message.js b/healthcare/hl7v2/ingestHl7v2Message.js index 1ec4b28077..3dc9778b3f 100644 --- a/healthcare/hl7v2/ingestHl7v2Message.js +++ b/healthcare/hl7v2/ingestHl7v2Message.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/listHl7v2Messages.js b/healthcare/hl7v2/listHl7v2Messages.js index ec4c146651..107bfb31d3 100644 --- a/healthcare/hl7v2/listHl7v2Messages.js +++ b/healthcare/hl7v2/listHl7v2Messages.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/listHl7v2Stores.js b/healthcare/hl7v2/listHl7v2Stores.js index 589458ae82..51e055587e 100644 --- a/healthcare/hl7v2/listHl7v2Stores.js +++ b/healthcare/hl7v2/listHl7v2Stores.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/patchHl7v2Message.js b/healthcare/hl7v2/patchHl7v2Message.js index 7e2df2aa89..d15770eb41 100644 --- a/healthcare/hl7v2/patchHl7v2Message.js +++ b/healthcare/hl7v2/patchHl7v2Message.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/patchHl7v2Store.js b/healthcare/hl7v2/patchHl7v2Store.js index 80d14d2707..0e72ea7f5f 100644 --- a/healthcare/hl7v2/patchHl7v2Store.js +++ b/healthcare/hl7v2/patchHl7v2Store.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = ( diff --git a/healthcare/hl7v2/setHl7v2StoreIamPolicy.js b/healthcare/hl7v2/setHl7v2StoreIamPolicy.js index 1924dd82d3..a78a7a3f2a 100644 --- a/healthcare/hl7v2/setHl7v2StoreIamPolicy.js +++ b/healthcare/hl7v2/setHl7v2StoreIamPolicy.js @@ -12,8 +12,6 @@ // See the License for the specific language governing permissions and // limitations under the License. -/* eslint-disable no-warning-comments */ - 'use strict'; const main = (