mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org>
		
			
				
	
	
		
			34 lines
		
	
	
		
			890 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			890 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| # See https://pre-commit.com for more information
 | |
| # See https://pre-commit.com/hooks.html for more hooks
 | |
| repos:
 | |
|   - repo: https://github.com/psf/black-pre-commit-mirror
 | |
|     rev: 23.11.0
 | |
|     hooks:
 | |
|       - id: black
 | |
|         args:
 | |
|           - --safe
 | |
|           - --quiet
 | |
|         files: ^((esphome|script|tests)/.+)?[^/]+\.py$
 | |
|   - repo: https://github.com/PyCQA/flake8
 | |
|     rev: 6.1.0
 | |
|     hooks:
 | |
|       - id: flake8
 | |
|         additional_dependencies:
 | |
|           - flake8-docstrings==1.5.0
 | |
|           - pydocstyle==5.1.1
 | |
|         files: ^(esphome|tests)/.+\.py$
 | |
|   - repo: https://github.com/pre-commit/pre-commit-hooks
 | |
|     rev: v3.4.0
 | |
|     hooks:
 | |
|       - id: no-commit-to-branch
 | |
|         args:
 | |
|           - --branch=dev
 | |
|           - --branch=release
 | |
|           - --branch=beta
 | |
|   - repo: https://github.com/asottile/pyupgrade
 | |
|     rev: v3.15.0
 | |
|     hooks:
 | |
|       - id: pyupgrade
 | |
|         args: [--py39-plus]
 |