aboutsummaryrefslogtreecommitdiffstats
path: root/lib/syntax_suggest/display_invalid_blocks.rb
Commit message (Collapse)AuthorAgeFilesLines
* [ruby/syntax_suggest] Bump minimum Ruby version & update standardrbSchneems2023-12-041-1/+1
| | | | https://github.com/ruby/syntax_suggest/commit/73753518e9
* [ruby/syntax_suggest] Do not output "Syntax OK" when there's an errorschneems2022-11-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | Due to a problem with ripper we do not recognize `break` as invalid code. It's confusing that "Syntax OK" is output in that case. When there's no syntax error, the algorithm should not say anything. The exception is in the CLI and that's for compatibility with `ruby -wc` ``` $ cat /tmp/break.rb break ⛄️ 3.1.2 🚀 /Users/rschneeman/Documents/projects/syntax_suggest (schneems/no-syntax-not-okay-break) $ ruby -wc /tmp/break.rb Syntax OK ``` > Note that this is invalid, running this code will raise a Syntax error. ``` $ exe/syntax_suggest /tmp/break.rb Syntax OK ``` Close https://github.com/ruby/syntax_suggest/pull/157 https://github.com/ruby/syntax_suggest/commit/d7bd8f03a2
* Sync SyntaxSuggestschneems2022-08-191-0/+84
``` $ tool/sync_default_gems.rb syntax_suggest ```