* Update run-tests to make use of /usr/bin/env * Update run-vint * Update run-vader-tests * Update custom-linting-rules * Update custom-checks * Update check-toc * Update check-supported-tools-tables
		
			
				
	
	
		
			22 lines
		
	
	
		
			448 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			448 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -e
 | 
						|
set -u
 | 
						|
 | 
						|
exit_code=0
 | 
						|
image=w0rp/ale
 | 
						|
docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$image")
 | 
						|
 | 
						|
echo '========================================'
 | 
						|
echo 'Running Vint to lint our code'
 | 
						|
echo '========================================'
 | 
						|
echo 'Vint warnings/errors follow:'
 | 
						|
echo
 | 
						|
 | 
						|
set -o pipefail
 | 
						|
docker run -a stdout "${docker_flags[@]}" vint -s . || exit_code=$?
 | 
						|
set +o pipefail
 | 
						|
echo
 | 
						|
 | 
						|
exit $exit_code
 |