tikal-tech-radar-generator
Version:
A library that generates an interactive radar, inspired by http://thoughtworks.com/radar/
11 lines (9 loc) • 604 B
JavaScript
const ExceptionMessages = {
TOO_MANY_QUADRANTS: 'There are more than 4 quadrant names listed in your data. Check the quadrant column for errors.',
TOO_MANY_RINGS: 'More than 4 rings.',
MISSING_HEADERS: 'Document is missing one or more required headers or they are misspelled. ' +
'Check that your document contains headers for "name", "ring", "quadrant", "isNew", "description".',
MISSING_CONTENT: 'Document is missing content.',
LESS_THAN_FOUR_QUADRANTS: 'There are less than 4 quadrant names listed in your data. Check the quadrant column for errors.'
}
module.exports = ExceptionMessages