@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/rules/comment.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/eslint-plugin-rules",
3
- "version": "0.6.12",
3
+ "version": "0.6.13-main.548ca8d",
4
4
  "homepage": "https://dxos.org",
5
5
  "bugs": "https://github.com/dxos/dxos/issues",
6
6
  "license": "MIT",
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);