@dxos/eslint-plugin-rules 0.6.12 → 0.6.13-main.548ca8d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/rules/comment.js +1 -1
package/package.json
CHANGED
package/rules/comment.js
CHANGED
|
@@ -152,7 +152,7 @@ module.exports = {
|
|
|
152
152
|
return true;
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
// 6. Check TODO format.
|
|
155
|
+
// 6. Check "TODO" format.
|
|
156
156
|
const containsTodo = TODO_PATTERN.test(comment.value);
|
|
157
157
|
const startsWithTodo = TODO_START_PATTERN.test(comment.value);
|
|
158
158
|
const isTodoFormatted = FORMATTED_TODO_PATTERN.test(comment.value);
|