mirror of
				https://github.com/DerTyp7/teamspeak-obs-overlay.git
				synced 2025-11-04 07:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			391 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			391 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  env: { browser: true, es2020: true },
 | 
						|
  extends: [
 | 
						|
    'eslint:recommended',
 | 
						|
    'plugin:@typescript-eslint/recommended',
 | 
						|
    'plugin:react-hooks/recommended',
 | 
						|
  ],
 | 
						|
  parser: '@typescript-eslint/parser',
 | 
						|
  parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
 | 
						|
  plugins: ['react-refresh'],
 | 
						|
  rules: {
 | 
						|
    'react-refresh/only-export-components': 'warn',
 | 
						|
  },
 | 
						|
}
 |