| 
					
				 | 
			
			
				@@ -9,10 +9,10 @@ if ! command -v ruff &> /dev/null || ! command -v dotenv-linter &> /dev/null; th 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 fi 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 # run ruff linter 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-ruff check --fix ./api 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+poetry run -C api ruff check --fix ./api 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 # run ruff formatter 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-ruff format ./api 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+poetry run -C api ruff format ./api 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 # run dotenv-linter linter 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-dotenv-linter ./api/.env.example ./web/.env.example 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+poetry run -C api dotenv-linter ./api/.env.example ./web/.env.example 
			 |