You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-04 11:51:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			522 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# generates .eslintignore.errorfiles to list the files which have errors in,
 | 
						|
# so that they can be ignored in future automated linting.
 | 
						|
 | 
						|
out=.eslintignore.errorfiles
 | 
						|
 | 
						|
cd `dirname $0`/..
 | 
						|
 | 
						|
echo "generating $out"
 | 
						|
 | 
						|
{
 | 
						|
    cat <<EOF
 | 
						|
# autogenerated file: run scripts/generate-eslint-error-ignore-file to update.
 | 
						|
 | 
						|
EOF
 | 
						|
    
 | 
						|
    ./node_modules/.bin/eslint --no-ignore -f json src test |
 | 
						|
        jq -r '.[] | select((.errorCount + .warningCount) > 0) | .filePath' |
 | 
						|
        sed -e 's/.*matrix-react-sdk\///';
 | 
						|
} > "$out"
 |