2018-09-20 11:19:55 +02:00
|
|
|
task :lint do
|
2021-02-17 19:06:55 +01:00
|
|
|
sh "bundle exec rubocop --parallel"
|
2018-09-20 11:19:55 +02:00
|
|
|
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
|