31 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			656 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* eslint-env node */
 | |
| require('@rushstack/eslint-patch/modern-module-resolution');
 | |
| 
 | |
| module.exports = {
 | |
|   root: true,
 | |
|   extends: [
 | |
|     'plugin:vue/vue3-essential',
 | |
|     'eslint:recommended',
 | |
|     'plugin:vue/vue3-recommended',
 | |
|     'plugin:vue/vue3-recommended',
 | |
|     '@vue/eslint-config-typescript/recommended',
 | |
|     '@vue/eslint-config-prettier',
 | |
|   ],
 | |
|   env: {
 | |
|     'vue/setup-compiler-macros': true,
 | |
|   },
 | |
|   rules: {
 | |
|     'vue/multi-word-component-names': ['off'],
 | |
|     'prettier/prettier': [
 | |
|       'error',
 | |
|       {
 | |
|         singleQuote: true,
 | |
|         semi: true,
 | |
|         tabWidth: 2,
 | |
|         trailingComma: 'all',
 | |
|         printWidth: 120,
 | |
|       },
 | |
|     ],
 | |
|   },
 | |
| };
 |