File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,37 +4,37 @@ const chalk = require('chalk');
44
55module . exports = {
66 note : {
7- regex : / [ \/ \/ ] [ \/ \* ] \s * N O T E \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
7+ regex : / [ \/ \/ ] [ \/ \* ] \s * N O T E : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
88 label : ' ✐ NOTE' ,
99 colorer : chalk . green
1010 } ,
1111 optimize : {
12- regex : / [ \/ \/ ] [ \/ \* ] \s * O P T I M I Z E \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
12+ regex : / [ \/ \/ ] [ \/ \* ] \s * O P T I M I Z E : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
1313 label : ' ↻ OPTIMIZE' ,
1414 colorer : chalk . blue
1515 } ,
1616 todo : {
17- regex : / [ \/ \/ ] [ \/ \* ] \s * T O D O \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
17+ regex : / [ \/ \/ ] [ \/ \* ] \s * T O D O : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
1818 label : ' ✓ TODO' ,
1919 colorer : chalk . magenta
2020 } ,
2121 hack : {
22- regex : / [ \/ \/ ] [ \/ \* ] \s * H A C K \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
22+ regex : / [ \/ \/ ] [ \/ \* ] \s * H A C K : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
2323 label : ' ✄ HACK' ,
2424 colorer : chalk . yellow
2525 } ,
2626 xxx : {
27- regex : / [ \/ \/ ] [ \/ \* ] \s * X X X \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
27+ regex : / [ \/ \/ ] [ \/ \* ] \s * X X X : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
2828 label : ' ✗ XXX' ,
2929 colorer : chalk . cyan
3030 } ,
3131 fixme : {
32- regex : / [ \/ \/ ] [ \/ \* ] \s * F I X M E \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
32+ regex : / [ \/ \/ ] [ \/ \* ] \s * F I X M E : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
3333 label : ' ☠ FIXME' ,
3434 colorer : chalk . red
3535 } ,
3636 bug : {
37- regex : / [ \/ \/ ] [ \/ \* ] \s * B U G \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
37+ regex : / [ \/ \/ ] [ \/ \* ] \s * B U G : \s * (?: \( ( [ ^ : ] * ) \) ) * \s * : ? \s * ( .* ) / i,
3838 label : ' ☢ BUG' ,
3939 colorer : chalk . red
4040 }
You can’t perform that action at this time.
0 commit comments