(value)
| 192 | } |
| 193 | |
| 194 | function getPrettierIgnoreAttributeCommentData(value) { |
| 195 | const match = value.trim().match(/^prettier-ignore-attribute(?:\s+(.+))?$/s); |
| 196 | |
| 197 | if (!match) { |
| 198 | return false; |
| 199 | } |
| 200 | |
| 201 | if (!match[1]) { |
| 202 | return true; |
| 203 | } |
| 204 | |
| 205 | return match[1].split(/\s+/); |
| 206 | } |
| 207 | |
| 208 | function needsToBorrowParentOpeningTagEndMarker(node) { |
| 209 | /** |
no test coverage detected
searching dependent graphs…