Takahiro Ebato
Takahiro Ebato
## WHAT & WHY The purpose of this PR is to enable `method_size_cutoff` to be configured through `Pry.config.method_size_cutoff`. Currently, `method_size_cutoff` is fixed to 30, but it might be useful that...
Details are described in #2219. This PR changed whereami to receive two arguments. The first and second arguments specify the number of lines to show before and after lineno.
### Requested feature I'd like to propose additional arguments of whereami that behaves as described below↓. ```ruby whereami n1 n2 #=> shows lines from current_line_num - n1 to current_line_num +...
# Pull Request ## Related issue Fixes https://github.com/meilisearch/meilisearch/issues/5046 ## What does this PR do? - ... ## PR checklist Please check if your PR fulfills the following requirements: - [...
Fixes: https://github.com/denoland/deno_lint/issues/1266 ## Considerations ### 1. Warning Range Using the `Comment#range` method would apply warnings to the entire block comment, which isn’t ideal. So instead, the implementation now focuses on...
According to the design policy, `GenericDialect` is intended to parse any SQL that other dialects can handle, but it currently fails to parse multi-table DELETE statements and DELETE statements without...