2018-09-20 11:19:55 +02:00
|
|
|
task :lint do
|
2021-02-17 19:06:55 +01:00
|
|
|
sh "bundle exec rubocop --parallel"
|
2022-11-21 15:41:28 +01:00
|
|
|
sh "bundle exec haml-lint app/views/ app/components/"
|
2018-09-20 11:19:55 +02:00
|
|
|
sh "bundle exec scss-lint app/assets/stylesheets/"
|
2021-09-15 13:19:53 -05:00
|
|
|
sh "bundle exec i18n-tasks missing --locales fr"
|
2021-09-16 22:52:49 -05:00
|
|
|
sh "bundle exec i18n-tasks unused --locale en" # TODO: check for all locales
|
2021-09-16 13:50:21 -05:00
|
|
|
sh "bundle exec i18n-tasks check-consistent-interpolations"
|
2018-09-20 11:19:55 +02:00
|
|
|
sh "bundle exec brakeman --no-pager"
|
|
|
|
sh "yarn lint:js"
|
2022-02-02 17:16:50 +01:00
|
|
|
sh "yarn lint:types"
|
2018-09-20 11:19:55 +02:00
|
|
|
end
|