Files
shields/services/codefactor/codefactor-helpers.js
2019-06-22 09:13:34 -05:00

44 lines
553 B
JavaScript

'use strict'
// https://support.codefactor.io/i14-glossary
const letterGrades = {
A: {
color: 'brightgreen',
},
'A-': {
color: 'green',
},
'B+': {
color: 'yellowgreen',
},
B: {
color: 'yellowgreen',
},
'B-': {
color: 'yellowgreen',
},
'C+': {
color: 'yellow',
},
C: {
color: 'yellow',
},
'C-': {
color: 'yellow',
},
'D+': {
color: 'orange',
},
D: {
color: 'orange',
},
'D-': {
color: 'orange',
},
F: {
color: 'red',
},
}
module.exports = { letterGrades }