const deckOptions = {
"My Deck": {
easeReward: {
minimumConsecutiveSuccessfulReviewsRequiredForReward: 3,
baseEaseReward: 0.05,
stepEaseReward: 0.05,
minimumEase: 1.30,
maximumEase: 2.50,
},
scheduler: {
// These options are effectively ignored since the hard, good, and
// easy buttons are using the native Anki scheduler
enableFuzz: true,
maximumInterval: 36500,
intervalModifier: 1.00,
calculateHardMultiplier: (currentEaseFactor, currentInterval) => {
// Use the native Anki scheduler for the Hard button
return 0.0;
},
calculateGoodMultiplier: (currentEaseFactor, currentInterval) => {
// Use the native Anki scheduler for the Good button
return 0.0;
},
calculateEasyMultiplier: (currentEaseFactor, currentInterval) => {
// Use the native Anki scheduler for the Easy button
return 0.0;
},
},
},
};