Skip to content

Commit 4c1b7bf

Browse files
committed
Improve TODO watching
1 parent c36bde5 commit 4c1b7bf

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Gruntfile.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,30 @@ module.exports = function(grunt) {
6868

6969

7070
todo: {
71+
options: {
72+
marks: [
73+
{
74+
name: 'FIX',
75+
pattern: /FIXME/,
76+
color: 'red'
77+
},
78+
{
79+
name: 'TODO',
80+
pattern: /TODO/,
81+
color: 'yellow'
82+
},
83+
{
84+
name: 'NOTE',
85+
pattern: /NOTE/,
86+
color: 'blue'
87+
},
88+
{
89+
name: 'STUB',
90+
pattern: /STUB/,
91+
color: 'red',
92+
},
93+
],
94+
},
7195
src: [
7296
'Gruntfile.js',
7397
'src/**/*.js',

0 commit comments

Comments
 (0)