mirror of
				https://github.com/cinnyapp/cinny.git
				synced 2025-11-04 14:30:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			356 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
module.exports = {
 | 
						|
  env: {
 | 
						|
    browser: true,
 | 
						|
    es2021: true,
 | 
						|
  },
 | 
						|
  extends: [
 | 
						|
    'plugin:react/recommended',
 | 
						|
    'airbnb',
 | 
						|
  ],
 | 
						|
  parserOptions: {
 | 
						|
    ecmaFeatures: {
 | 
						|
      jsx: true,
 | 
						|
    },
 | 
						|
    ecmaVersion: 12,
 | 
						|
    sourceType: 'module',
 | 
						|
  },
 | 
						|
  plugins: [
 | 
						|
    'react',
 | 
						|
  ],
 | 
						|
  rules: {
 | 
						|
    'linebreak-style': 0,
 | 
						|
    'no-underscore-dangle': 0,
 | 
						|
  },
 | 
						|
};
 |