Skip to content

Commit

Permalink
Moving linting gems into development and test group in Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zakariaf committed Nov 12, 2022
1 parent d78071f commit 5671c93
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,20 +62,20 @@ gem 'devise'
# a devise extension which uses JWT tokens for user authentication
gem 'devise-jwt'

# Linting
gem 'brakeman'
gem 'bundler-audit'
gem 'fasterer'
gem 'license_finder', require: false
gem 'overcommit'

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'annotate'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'pry'
gem 'rspec-rails', '~> 5.0.0'

# Linting
gem 'brakeman'
gem 'bundler-audit'
gem 'fasterer'
gem 'license_finder', require: false
gem 'overcommit'
gem 'rubocop', require: false
gem 'rubocop-performance'
gem 'rubocop-rails', require: false
Expand Down

0 comments on commit 5671c93

Please sign in to comment.