Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I was reading the [Developing Reek Contributing](https://github.com/JuanVqz/reek?tab=readme-ov-file#developing-reek--contributing) to understand how `reek` works, then run the `rake console` and saw the `warning` message. ```ruby ➜ reek git:(master) be rake console WARNING: consider using an array rather than a space-delimited string with cucumber_opts to avoid undesired behavior. BEFORE ➜ reek git:(master) rg cucumber_opts . ./tasks/test.rake 21: t.cucumber_opts = 'features --format progress --color' AFTER ➜ reek git:(master) rg cucumber_opts . ./tasks/test.rake 21: t.cucumber_opts = ['features --format', 'progress --color'] ```
- Loading branch information