Enable CodeClimate Bundler-Audit checks (#2862)
* add bundler-audit to Gemfile * Enable CodeClimate bundler-audit checks
This commit is contained in:
parent
74036a2c9d
commit
87588fa894
|
@ -1,14 +1,16 @@
|
||||||
engines:
|
engines:
|
||||||
duplication:
|
bundler-audit:
|
||||||
enabled: false
|
enabled: true
|
||||||
rubocop:
|
duplication:
|
||||||
enabled: true
|
enabled: false
|
||||||
eslint:
|
eslint:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
rubocop:
|
||||||
|
enabled: true
|
||||||
ratings:
|
ratings:
|
||||||
paths:
|
paths:
|
||||||
- "**.rb"
|
- "**.rb"
|
||||||
- "**.js"
|
- "**.js"
|
||||||
exclude_paths:
|
exclude_paths:
|
||||||
- spec/
|
- spec/
|
||||||
- vendor/asset
|
- vendor/asset
|
||||||
|
|
1
Gemfile
1
Gemfile
|
@ -86,6 +86,7 @@ group :development do
|
||||||
gem 'letter_opener'
|
gem 'letter_opener'
|
||||||
gem 'letter_opener_web'
|
gem 'letter_opener_web'
|
||||||
gem 'rubocop', '0.46.0', require: false
|
gem 'rubocop', '0.46.0', require: false
|
||||||
|
gem 'bundler-audit', '~> 0.4.0', require: false
|
||||||
|
|
||||||
gem 'capistrano', '3.8.0'
|
gem 'capistrano', '3.8.0'
|
||||||
gem 'capistrano-rails'
|
gem 'capistrano-rails'
|
||||||
|
|
|
@ -71,6 +71,9 @@ GEM
|
||||||
bullet (5.5.1)
|
bullet (5.5.1)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
uniform_notifier (~> 1.10.0)
|
uniform_notifier (~> 1.10.0)
|
||||||
|
bundler-audit (0.4.0)
|
||||||
|
bundler (~> 1.2)
|
||||||
|
thor (~> 0.18)
|
||||||
capistrano (3.8.0)
|
capistrano (3.8.0)
|
||||||
airbrussh (>= 1.0.0)
|
airbrussh (>= 1.0.0)
|
||||||
i18n
|
i18n
|
||||||
|
@ -477,6 +480,7 @@ DEPENDENCIES
|
||||||
better_errors
|
better_errors
|
||||||
binding_of_caller
|
binding_of_caller
|
||||||
bullet
|
bullet
|
||||||
|
bundler-audit (~> 0.4.0)
|
||||||
capistrano (= 3.8.0)
|
capistrano (= 3.8.0)
|
||||||
capistrano-rails
|
capistrano-rails
|
||||||
capistrano-rbenv
|
capistrano-rbenv
|
||||||
|
|
Reference in a new issue