Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include standard.rb as Part of Rubocop Rules #670

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Merge pull request #650 from codacy/bump_1.65
Bump to the latest version TCE-1079
  • Loading branch information
stefanvacareanu7 authored and berniechiu committed Oct 18, 2024
commit 983c420f23646de6d4080cf4e0a4d4de4651e5dd
9 changes: 5 additions & 4 deletions doc_generation/rubocop_doc/generator.rb
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@

# Plugins with patterns documentation should be added here
$plugins = ["rubocop-performance",
"rubocop-rails",
"rubocop-sorbet",
"rubocop-graphql",
"rubocop-rails",
"rubocop-sorbet",
"rubocop-graphql",
"rubocop-thread_safety",
"rubocop-minitest",
"rubocop-rake",
@@ -16,7 +16,8 @@
"rubocop-mdsol",
"rubocop-rspec_rails",
"rubocop-capybara",
"rubocop-rubycw"
"rubocop-rubycw",
"standard"
]

# frozen_string_literal: true
3 changes: 2 additions & 1 deletion src/main/scala/codacy/rubocop/Rubocop.scala
Original file line number Diff line number Diff line change
@@ -32,7 +32,8 @@ object Rubocop extends Tool {
"rubocop-md",
"rubocop-mdsol",
"rubocop-rspec_rails",
"rubocop-capybara"
"rubocop-capybara",
"standard"
)

// Gemfile is analysed
You are viewing a condensed version of this merge commit. You can view the full changes here.