Skip to content

Commit

Permalink
Fix dense-analysis#707 - Fix some duplicate tags, and add some code t…
Browse files Browse the repository at this point in the history
…o check for them
  • Loading branch information
w0rp committed Jun 29, 2017
1 parent 518f99b commit 411c6b5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/ale-javascript.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ g:ale_javascript_prettier_eslint_use_global


-------------------------------------------------------------------------------
prettier-standard *ale-javascript-prettier-eslint*
prettier-standard *ale-javascript-prettier-standard*


g:ale_javascript_prettier_standard_executable
*g:ale_javascript_prettier_eslint_executable*
*b:ale_javascript_prettier_eslint_executable*
*g:ale_javascript_prettier_standard_executable*
*b:ale_javascript_prettier_standard_executable*
Type: |String|
Default: `'prettier-standard'`

Expand Down
8 changes: 8 additions & 0 deletions run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,14 @@ if ((run_custom_checks)); then
docker run -a stdout "${DOCKER_FLAGS[@]}" ./custom-checks . || EXIT=$?
set +o pipefail
echo

echo '========================================'
echo 'Checking for duplicate tags'
echo '========================================'
echo 'Duplicate tags follow:'
echo

grep --exclude=tags -roh '\*.*\*$' doc | sort | uniq -d || EXIT=$?
fi

exit $EXIT

0 comments on commit 411c6b5

Please sign in to comment.