(block?: BlockState)
| 98 | * Checks if a block should be excluded from autolayout |
| 99 | */ |
| 100 | export function shouldSkipAutoLayout(block?: BlockState): boolean { |
| 101 | if (!block) return true |
| 102 | return AUTO_LAYOUT_EXCLUDED_TYPES.has(block.type) |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Filters block IDs to only include those eligible for layout |
no outgoing calls
no test coverage detected