You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					44 lines
				
				896 B
			
		
		
			
		
	
	
					44 lines
				
				896 B
			| 
											2 years ago
										 | "use strict"; | ||
|  | 
 | ||
|  | module.exports = { | ||
|  |     "env": { | ||
|  |         "browser": true, | ||
|  |         "commonjs": true, | ||
|  |         "es2021": true, | ||
|  |         "node": true | ||
|  |     }, | ||
|  |     "extends": "eslint:recommended", | ||
|  |     "parserOptions": { | ||
|  |         "ecmaVersion": "latest" | ||
|  |     }, | ||
|  |     "ignorePatterns": ["vendor/*.js", "dist/*.js", "test/jquery-1.8.3.min.js"], | ||
|  |     "rules": { | ||
|  |         "indent": [ | ||
|  |             "error", | ||
|  |             4 | ||
|  |         ], | ||
|  |         "linebreak-style": [ | ||
|  |             "error", | ||
|  |             "unix" | ||
|  |         ], | ||
|  |         "quotes": [ | ||
|  |             "error", | ||
|  |             "double" | ||
|  |         ], | ||
|  |         "semi": [ | ||
|  |             "error", | ||
|  |             "always" | ||
|  |         ], | ||
|  |         "curly": "error", | ||
|  |         "eqeqeq": "error", | ||
|  |         "no-new": "error", | ||
|  |         "no-caller": "error", | ||
|  |         "guard-for-in": "error", | ||
|  |         "no-extend-native": "error", | ||
|  |         "strict": [ | ||
|  |             "error", | ||
|  |             "global" | ||
|  |         ], | ||
|  |     } | ||
|  | }; |