mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 13:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			438 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   root: true,
 | |
|   env: {
 | |
|     node: true,
 | |
|   },
 | |
|   extends: [
 | |
|     'plugin:vue/recommended',
 | |
|     'eslint:recommended',
 | |
|     'prettier/vue',
 | |
|     'plugin:prettier/recommended',
 | |
|   ],
 | |
|   parserOptions: {
 | |
|     parser: 'babel-eslint',
 | |
|   },
 | |
|   plugins: ['prettier'],
 | |
|   rules: {
 | |
|     'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
 | |
|     'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
 | |
|   },
 | |
| }
 |