mirror of
				https://github.com/librenms/librenms.git
				synced 2024-10-07 16:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			815 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			815 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
version: "2"
 | 
						|
plugins:
 | 
						|
  markdownlint:
 | 
						|
    enabled: true
 | 
						|
    checks:
 | 
						|
      MD013:
 | 
						|
        line_length: 120
 | 
						|
  phan:
 | 
						|
    enabled: false
 | 
						|
  phpcodesniffer:
 | 
						|
    enabled: true
 | 
						|
    config:
 | 
						|
        standard: "PSR2"
 | 
						|
    checks:
 | 
						|
      Generic Files LineLength TooLong:
 | 
						|
        enabled: false
 | 
						|
  duplication:
 | 
						|
    enabled: true
 | 
						|
    config:
 | 
						|
      languages:
 | 
						|
      - javascript
 | 
						|
      - python
 | 
						|
      - php
 | 
						|
  shellcheck:
 | 
						|
    enabled: true
 | 
						|
  eslint:
 | 
						|
    enabled: true
 | 
						|
  fixme:
 | 
						|
    enabled: true
 | 
						|
  phpmd:
 | 
						|
    enabled: true
 | 
						|
    checks:
 | 
						|
      Controversial/CamelCaseVariableName:
 | 
						|
        enabled: false
 | 
						|
      Controversial/CamelCaseParameterName:
 | 
						|
        enabled: false
 | 
						|
      CleanCode/StaticAccess:
 | 
						|
        enabled: false
 | 
						|
  radon:
 | 
						|
    enabled: true
 | 
						|
exclude_patterns:
 | 
						|
  - "tests/"
 | 
						|
  - "lib/"
 | 
						|
  - "vendor/"
 | 
						|
  - "html/js/"
 | 
						|
  - "html/css/"
 |