Some checks are pending
		
		
	
	CI / Python ${{ matrix.python-version }} (3.10) (push) Waiting to run
				
			CI / Python ${{ matrix.python-version }} (3.7) (push) Waiting to run
				
			CI / Python ${{ matrix.python-version }} (3.8) (push) Waiting to run
				
			CI / Python ${{ matrix.python-version }} (3.9) (push) Waiting to run
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			661 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			661 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# -*- mode: yaml; indent-tabs-mode: nil; tab-width: 2; coding: utf-8-unix -*-
 | 
						|
---
 | 
						|
 | 
						|
default_language_version:
 | 
						|
    python: python3.11
 | 
						|
default_stages: [pre-commit]
 | 
						|
fail_fast: true
 | 
						|
repos:
 | 
						|
- repo: local
 | 
						|
  hooks:
 | 
						|
    - id: pylint
 | 
						|
      name: pylint
 | 
						|
      entry: env PYTHONPATH=/mnt/o/var/local/src/toxygen.git/toxygen toxcore_pylint.bash
 | 
						|
      language: system
 | 
						|
      types: [python]
 | 
						|
      args:
 | 
						|
        [
 | 
						|
          "--source-roots=/mnt/o/var/local/src/toxygen.git/toxygen",
 | 
						|
          "-rn", # Only display messages
 | 
						|
          "-sn", # Don't display the score
 | 
						|
          "--rcfile=/usr/local/etc/testforge/pylint.rc", # Link to your config file
 | 
						|
          "-E"
 | 
						|
        ]
 |