You've already forked godot
							
							
				mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 12:00:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			662 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			662 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# https://clangd.llvm.org/config
 | 
						|
---
 | 
						|
# Default conditions, apply everywhere.
 | 
						|
 | 
						|
Diagnostics:
 | 
						|
  Includes:
 | 
						|
    IgnoreHeader:
 | 
						|
      - \.compat\.inc
 | 
						|
---
 | 
						|
# Header-specific conditions.
 | 
						|
 | 
						|
If:
 | 
						|
  PathMatch: .*\.(h|hh|hpp|hxx|inc)
 | 
						|
 | 
						|
# Exclude certain, noisy warnings that lack full context. Replace with lowered severity if/when
 | 
						|
# clangd gets diagnostic severity support. (See: https://github.com/clangd/clangd/issues/1937)
 | 
						|
CompileFlags:
 | 
						|
  Add:
 | 
						|
    - -Wno-unneeded-internal-declaration
 | 
						|
    - -Wno-unused-const-variable
 | 
						|
    - -Wno-unused-function
 | 
						|
    - -Wno-unused-variable
 | 
						|
---
 | 
						|
# Suppress all third-party warnings.
 | 
						|
 | 
						|
If:
 | 
						|
  PathMatch: thirdparty/.*
 | 
						|
 | 
						|
Diagnostics:
 | 
						|
  Suppress: "*"
 |