胖子天骄的MES系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
330 B

  1. module.exports = {
  2. singleQuote: true,
  3. trailingComma: 'all',
  4. printWidth: 100,
  5. proseWrap: 'never',
  6. endOfLine: 'lf',
  7. overrides: [
  8. {
  9. files: '.prettierrc',
  10. options: {
  11. parser: 'json',
  12. },
  13. },
  14. {
  15. files: 'document.ejs',
  16. options: {
  17. parser: 'html',
  18. },
  19. },
  20. ],
  21. };