Move linters to a Rake task
This allow running all linters in a single pass.
This commit is contained in:
parent
39a06bec16
commit
d6fd150929
3 changed files with 13 additions and 19 deletions
8
Rakefile
8
Rakefile
|
@ -5,6 +5,14 @@ require File.expand_path('config/application', __dir__)
|
|||
|
||||
Rails.application.load_tasks
|
||||
|
||||
task :lint do
|
||||
sh "bundle exec rubocop"
|
||||
sh "bundle exec haml-lint app/views/"
|
||||
sh "bundle exec scss-lint app/assets/stylesheets/"
|
||||
sh "bundle exec brakeman --no-pager"
|
||||
sh "yarn lint:js"
|
||||
end
|
||||
|
||||
task :deploy do
|
||||
domains = %w(37.187.249.111 149.202.72.152 149.202.198.6)
|
||||
domains.each do |domain|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue