diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-03-16 11:06:28 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-03-16 11:06:28 +0000 |
commit | 08dd9d48876194cb087014fb3ed46c8c86f7052f (patch) | |
tree | 498f8561585feab515aaaefc10f6ccfdd2ed95b4 /.gitlab-ci.yml | |
parent | 4e7d4b4dc181dd47db41147291eb0c677fddd4c0 (diff) | |
parent | 95d38ac9f97e80a26aac8026a4d38a54fbdc98e8 (diff) | |
download | gitlab-ce-08dd9d48876194cb087014fb3ed46c8c86f7052f.tar.gz |
Merge branch 'remove-es6-extension-configuration' into 'master'
Remove remaining references to .es6 file extension in our config files and documentation
See merge request !9980
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 35c36132169..ea273334d4c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -368,7 +368,7 @@ lint:javascript:report: stage: post-test before_script: [] script: - - find app/ spec/ -name '*.js' -or -name '*.js.es6' -exec sed --in-place 's|/\* eslint-disable .*\*/||' {} \; # run report over all files + - find app/ spec/ -name '*.js' -exec sed --in-place 's|/\* eslint-disable .*\*/||' {} \; # run report over all files - yarn run eslint-report || true # ignore exit code artifacts: name: eslint-report |