mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +00:00 
			
		
		
		
	Applies to javascript files inside the platform library folder, the exposed Engine code, and any javascript files in modules. Files ending with ".externs.js" will be ignored, you can create a ".eslintignore" file to specify extra files to be ignored.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			133 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			133 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
	"extends": [
 | 
						|
		"./.eslintrc.js",
 | 
						|
	],
 | 
						|
	"globals": {
 | 
						|
		"Godot": true,
 | 
						|
		"Preloader": true,
 | 
						|
		"Utils": true,
 | 
						|
	},
 | 
						|
};
 |