Skip to content

Commit 24b7353

Browse files
linting
1 parent 7d6eeab commit 24b7353

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/health-data.ios.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,9 @@ const quantityTypes = {
334334
dietaryWater: HKQuantityTypeIdentifierDietaryWater,
335335
dietaryZinc: HKQuantityTypeIdentifierDietaryZinc,
336336
distanceCycling: HKQuantityTypeIdentifierDistanceCycling,
337-
//distanceSwimming: HKQuantityTypeIdentifierDistanceSwimming,
337+
// distanceSwimming: HKQuantityTypeIdentifierDistanceSwimming,
338338
distanceWalkingRunning: HKQuantityTypeIdentifierDistanceWalkingRunning,
339-
//distanceWheelChair: HKQuantityTypeIdentifierDistanceWheelchair,
339+
// distanceWheelChair: HKQuantityTypeIdentifierDistanceWheelchair,
340340
electrodermalActivity: HKQuantityTypeIdentifierElectrodermalActivity,
341341
flightsClimbed: HKQuantityTypeIdentifierFlightsClimbed,
342342
forcedExpiratoryVolume1: HKQuantityTypeIdentifierForcedExpiratoryVolume1,
@@ -350,10 +350,10 @@ const quantityTypes = {
350350
oxygenSaturation: HKQuantityTypeIdentifierOxygenSaturation,
351351
peakExpiratoryFlowRate: HKQuantityTypeIdentifierPeakExpiratoryFlowRate,
352352
peripheralPerfusionIndex: HKQuantityTypeIdentifierPeripheralPerfusionIndex,
353-
//pushCount: HKQuantityTypeIdentifierPushCount,
353+
// pushCount: HKQuantityTypeIdentifierPushCount,
354354
respiratoryRate: HKQuantityTypeIdentifierRespiratoryRate,
355355
stepCount: HKQuantityTypeIdentifierStepCount,
356-
//swimmingStrokeCount: HKQuantityTypeIdentifierSwimmingStrokeCount,
356+
// swimmingStrokeCount: HKQuantityTypeIdentifierSwimmingStrokeCount,
357357
uvExposure: HKQuantityTypeIdentifierUVExposure
358358
};
359359

@@ -366,13 +366,13 @@ if (typeof HKQuantityTypeIdentifierDistanceWheelchair !== 'undefined') {
366366
Object.assign(quantityTypes, {
367367
distanceWheelChair: HKQuantityTypeIdentifierDistanceWheelchair
368368
});
369-
//quantityTypes[distanceWheelChair]= HKQuantityTypeIdentifierDistanceWheelchair;
369+
// quantityTypes[distanceWheelChair]= HKQuantityTypeIdentifierDistanceWheelchair;
370370
}
371371
if (typeof HKQuantityTypeIdentifierPushCount !== 'undefined') {
372372
Object.assign(quantityTypes, {
373373
pushCount: HKQuantityTypeIdentifierPushCount
374374
});
375-
//quantityTypes[pushCount]= HKQuantityTypeIdentifierPushCount;
375+
// quantityTypes[pushCount]= HKQuantityTypeIdentifierPushCount;
376376
}
377377
if (typeof HKQuantityTypeIdentifierSwimmingStrokeCount !== 'undefined') {
378378
Object.assign(quantityTypes, {
@@ -386,21 +386,21 @@ const characteristicTypes = {
386386
bloodType: HKCharacteristicTypeIdentifierBloodType,
387387
dateOfBirthComponents: HKCharacteristicTypeIdentifierDateOfBirth,
388388
fitzpatrickSkinType: HKCharacteristicTypeIdentifierFitzpatrickSkinType,
389-
//wheelchairUse: HKCharacteristicTypeIdentifierWheelchairUse
389+
// wheelchairUse: HKCharacteristicTypeIdentifierWheelchairUse
390390
};
391391
if (typeof HKCharacteristicTypeIdentifierWheelchairUse !== 'undefined') {
392392
Object.assign(characteristicTypes, {
393393
wheelchairUse: HKCharacteristicTypeIdentifierWheelchairUse
394394
});
395-
//characteristicTypes[wheelchairUse]= HKCharacteristicTypeIdentifierWheelchairUse;
395+
// characteristicTypes[wheelchairUse]= HKCharacteristicTypeIdentifierWheelchairUse;
396396
}
397397

398398
const categoryTypes = {
399399
appleStandHour: HKCategoryTypeIdentifierAppleStandHour,
400400
cervicalMucusQuality: HKCategoryTypeIdentifierCervicalMucusQuality,
401401
intermenstrualBleeding: HKCategoryTypeIdentifierIntermenstrualBleeding,
402402
menstrualFlow: HKCategoryTypeIdentifierMenstrualFlow,
403-
//mindfulSession: HKCategoryTypeIdentifierMindfulSession,
403+
// mindfulSession: HKCategoryTypeIdentifierMindfulSession,
404404
ovulationTestResult: HKCategoryTypeIdentifierOvulationTestResult,
405405
sexualActivity: HKCategoryTypeIdentifierSexualActivity
406406
// "sleepAnalysis" : HKCategoryTypeIdentifierSleepAnalysis
@@ -409,7 +409,7 @@ if (typeof HKCategoryTypeIdentifierMindfulSession !== 'undefined') {
409409
Object.assign(categoryTypes, {
410410
mindfulSession: HKCategoryTypeIdentifierMindfulSession
411411
});
412-
//categoryTypes[mindfulSession]= HKCategoryTypeIdentifierMindfulSession;
412+
// categoryTypes[mindfulSession]= HKCategoryTypeIdentifierMindfulSession;
413413
}
414414

415415
const acceptableDataTypes = {

0 commit comments

Comments
 (0)