Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-12-25 13:20:50 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-12-26 12:18:10 +0300
commit8139895b4362817cf947431fab9c95ce223b87ae (patch)
tree3419ad5cdde44bad709024a886c523f57e7b4881 /scripts/static-analysis
parent29749f92b7f86d45af41509262601e47ee848d92 (diff)
Use `Gitlab::Utils::Override` over defined?(super)
Diffstat (limited to 'scripts/static-analysis')
-rwxr-xr-xscripts/static-analysis5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/static-analysis b/scripts/static-analysis
index 2a2bc67800d..9690b42c788 100755
--- a/scripts/static-analysis
+++ b/scripts/static-analysis
@@ -10,9 +10,10 @@ tasks = [
%w[bundle exec license_finder],
%w[yarn run eslint],
%w[bundle exec rubocop --parallel],
- %w[scripts/lint-conflicts.sh],
%w[bundle exec rake gettext:lint],
- %w[scripts/lint-changelog-yaml]
+ %w[bundle exec rake lint:static_verification],
+ %w[scripts/lint-changelog-yaml],
+ %w[scripts/lint-conflicts.sh]
]
failed_tasks = tasks.reduce({}) do |failures, task|