laund
laund
### Search before asking - [x] I searched the [issues](https://github.com/sqlfluff/sqlfluff/issues) and found no similar issues. ### Description Sqlfluff should handle missing semicolons between unrelated queries gracefully, instead of encountering a...
# Description With this config: ``` break_chained_methods = true wrap_line_length = 80 ``` for method chains, it formatted like this: ```js document.getElementById('some_id') .appendChild(document.getElementById('child_to_append') .content.cloneNode(true)); ``` Now, after this change, it...