mirror of
				https://github.com/fastapi/sqlmodel.git
				synced 2025-11-01 02:43:22 +08:00 
			
		
		
		
	 065fcdc828
			
		
	
	065fcdc828
	
	
	
		
			
			* 👷 Add pre-commit * 🔧 Add pyproject.toml config for Ruff * ➕ Replace isort, flake8, autoflake with Ruff * 🔨 Update lint and format scripts * 🎨 Format with Ruff * 🔧 Update Poetry config
		
			
				
	
	
		
			9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			125 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| set -e
 | |
| set -x
 | |
| 
 | |
| mypy sqlmodel
 | |
| ruff sqlmodel tests docs_src scripts
 | |
| black sqlmodel tests docs_src --check
 |