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.
		
		
		
		
		
			
		
			
				
					
					
						
							31 lines
						
					
					
						
							587 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							31 lines
						
					
					
						
							587 B
						
					
					
				
								/*
							 | 
						|
								 * Eslint config file
							 | 
						|
								 * Documentation: https://eslint.org/docs/user-guide/configuring/
							 | 
						|
								 * Install the Eslint extension before using this feature.
							 | 
						|
								 */
							 | 
						|
								module.exports = {
							 | 
						|
								  env: {
							 | 
						|
								    es6: true,
							 | 
						|
								    browser: true,
							 | 
						|
								    node: true,
							 | 
						|
								  },
							 | 
						|
								  ecmaFeatures: {
							 | 
						|
								    modules: true,
							 | 
						|
								  },
							 | 
						|
								  parserOptions: {
							 | 
						|
								    ecmaVersion: 2018,
							 | 
						|
								    sourceType: 'module',
							 | 
						|
								  },
							 | 
						|
								  globals: {
							 | 
						|
								    wx: true,
							 | 
						|
								    App: true,
							 | 
						|
								    Page: true,
							 | 
						|
								    getCurrentPages: true,
							 | 
						|
								    getApp: true,
							 | 
						|
								    Component: true,
							 | 
						|
								    requirePlugin: true,
							 | 
						|
								    requireMiniProgram: true,
							 | 
						|
								  },
							 | 
						|
								  // extends: 'eslint:recommended',
							 | 
						|
								  rules: {},
							 | 
						|
								}
							 | 
						|
								
							 |