.prettierrc 543 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "semi": true,
  3. "bracketSpacing": true,
  4. "jsxBracketSameLine": true,
  5. "tabWidth": 4,
  6. "useTabs": false,
  7. "singleQuote": true,
  8. "printWidth": 1000,
  9. "tslintIntegration":true,
  10. "eslintIntegration": false,
  11. "stylelintIntegration": false,
  12. "disableLanguages": ["vue"],
  13. "overrides": [
  14. {
  15. "files": ["*.json", ".eslintrc", ".tslintrc", ".prettierrc", ".tern-project"],
  16. "options": {
  17. "parser": "json"
  18. }
  19. },
  20. {
  21. "files": ["*.ts", "*.tsx"],
  22. "options": {
  23. "parser": "typescript",
  24. "quoteProps":"as-needed"
  25. }
  26. }
  27. ]
  28. }