21 lines
		
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
| export default {
 | |
|   '*.md': ['prettier --cache --ignore-unknown --write'],
 | |
|   '*.vue': [
 | |
|     'prettier --write',
 | |
|     'eslint --cache --fix',
 | |
|     'stylelint --fix --allow-empty-input',
 | |
|   ],
 | |
|   '*.{js,jsx,ts,tsx}': [
 | |
|     'prettier --cache --ignore-unknown  --write',
 | |
|     'eslint --cache --fix',
 | |
|   ],
 | |
|   '*.{scss,less,styl,html,vue,css}': [
 | |
|     'prettier --cache --ignore-unknown --write',
 | |
|     'stylelint --fix --allow-empty-input',
 | |
|   ],
 | |
|   'package.json': ['prettier --cache --write'],
 | |
|   '{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': [
 | |
|     'prettier --cache --write --parser json',
 | |
|   ],
 | |
| };
 |