From 6979832f37f57e6218d1dcd4e9160b034fb9bd2c Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 26 Dec 2020 17:25:11 +0900 Subject: [PATCH] Update example for `rubocop -V` of issue template Follow https://github.com/rubocop-hq/rubocop/pull/9126. --- .github/ISSUE_TEMPLATE/bug_report.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 92a65208c6..b8d6d9ed86 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -32,8 +32,12 @@ a problem will expedite its solution. ## RuboCop version Include the output of `rubocop -V` or `bundle exec rubocop -V` if using Bundler. Here's an example: +You can see extension cop versions (e.g. rubocop-rails, rubocop-performance, and others) output by rubocop -V, +include them as well. Here's an example: ``` $ [bundle exec] rubocop -V -0.66.0 (using Parser 2.6.2.0, running on ruby 2.6.2 x86_64-linux) +1.8.0 (using Parser 3.0.0.0, rubocop-ast 1.4.0, running on ruby 3.0.0 x86_64-darwin19) + - rubocop-rails 2.9.1 + - rubocop-performance 1.9.2 ```