You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							19 lines
						
					
					
						
							666 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							666 B
						
					
					
				
								#!/usr/bin/env bash
							 | 
						|
								set -euo pipefail
							 | 
						|
								
							 | 
						|
								echo "🔍 Validating markdown formatting..."
							 | 
						|
								
							 | 
						|
								# Check if markdownlint is available
							 | 
						|
								if ! command -v npx &> /dev/null; then
							 | 
						|
								    echo "❌ npx not found. Please install Node.js and npm first."
							 | 
						|
								    exit 1
							 | 
						|
								fi
							 | 
						|
								
							 | 
						|
								# Run markdownlint on project markdown files (exclude node_modules)
							 | 
						|
								echo "📝 Checking project markdown files..."
							 | 
						|
								npx markdownlint "*.md" "*.mdc" "scripts/**/*.md" "src/**/*.md" "test-playwright/**/*.md" "resources/**/*.md" --config .markdownlint.json 2>/dev/null || {
							 | 
						|
								    echo "❌ Markdown validation failed. Run 'npm run markdown:fix' to auto-fix issues."
							 | 
						|
								    exit 1
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								echo "✅ All markdown files pass validation!"
							 | 
						|
								
							 |