From afb2661dd6267f7993464cdb18324edaa03df1e1 Mon Sep 17 00:00:00 2001 From: Annibelle Boling Date: Wed, 2 Jul 2025 12:51:31 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Use=20'console'=20instead=20of?= =?UTF-8?q?=20'bash'=20for=20code=20block=20highlighting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0f670839..563ed969 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -46,7 +46,7 @@ Take a look at the `reek` list which is the file called `REEK` and find somethin To refresh the `reek` list: -```bash +```console bundle exec reek > REEK ``` @@ -54,7 +54,7 @@ bundle exec reek > REEK To run all tests -```bash +```console bundle exec rake test ``` @@ -62,13 +62,13 @@ bundle exec rake test Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`. -```bash +```console bundle exec rake ``` Or just run the linter. -```bash +```console bundle exec rake rubocop_gradual:autocorrect ```