mirror of
				https://github.com/devine-dl/pywidevine.git
				synced 2025-11-04 11:54:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			814 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			814 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# See https://pre-commit.com for more information
 | 
						|
# See https://pre-commit.com/hooks.html for more hooks
 | 
						|
 | 
						|
exclude: '_pb2.pyi?$'
 | 
						|
repos:
 | 
						|
  - repo: https://github.com/astral-sh/ruff-pre-commit
 | 
						|
    rev: v0.14.2
 | 
						|
    hooks:
 | 
						|
      - id: ruff-check
 | 
						|
        language: system
 | 
						|
        types: [ python ]
 | 
						|
  - repo: https://github.com/pre-commit/mirrors-mypy
 | 
						|
    rev: v1.18.2
 | 
						|
    hooks:
 | 
						|
      - id: mypy
 | 
						|
        language: system
 | 
						|
        types: [ python ]
 | 
						|
        args: []  # override defaults to empty
 | 
						|
  - repo: https://github.com/pycqa/isort
 | 
						|
    rev: 6.1.0
 | 
						|
    hooks:
 | 
						|
      - id: isort
 | 
						|
        language: system
 | 
						|
        types: [ python ]
 | 
						|
  - repo: https://github.com/pre-commit/pre-commit-hooks
 | 
						|
    rev: v6.0.0
 | 
						|
    hooks:
 | 
						|
      - id: end-of-file-fixer
 | 
						|
      - id: trailing-whitespace
 | 
						|
        args: [--markdown-linebreak-ext=md]
 |