7 lines
284 B
JavaScript
7 lines
284 B
JavaScript
/* eslint-disable import/prefer-default-export */
|
|
// This eslint-disable ^^^ can be removed when at least
|
|
// one more constant is added to this file. Currently
|
|
// constants.js files with only a single constant
|
|
// are flagged by this rule.
|
|
|
|
export const MAX_MILESTONES_TO_DISPLAY = 5;
|