Added defacto JavaScript linting with eslint. I also included an editor config file to aid common style. (http://editorconfig.org/#example-file)
		
			
				
	
	
		
			9 lines
		
	
	
		
			120 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			120 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
| 	"extends": "eslint:recommended",
 | |
| 	"root": true,
 | |
| 	"env": {
 | |
| 		"browser": true,
 | |
| 		"jquery": true
 | |
| 	}
 | |
| };
 |