.prettierignore 225 B

123456789101112131415161718
  1. # Ignore everything recursively...
  2. *
  3. # But not the .{ts,js,html,css,scss,vue,json,md} files
  4. !*.ts
  5. !*.js
  6. !*.html
  7. !*.css
  8. !*.scss
  9. !*.vue
  10. !*.json
  11. !*.md
  12. # But still ignore the dist folder
  13. dist/**
  14. # Check subdirectories too
  15. !*/