.prettierrc 332 B

1234567891011121314151617
  1. {
  2. "printWidth" : 120,
  3. "singleQuote" : true,
  4. "bracketSpacing" : true,
  5. "endOfLine" : "crlf",
  6. "useTabs" : false,
  7. "tabWidth" : 4,
  8. "overrides" : [
  9. {
  10. "files": ".java",
  11. "options": {
  12. "useTabs" : false,
  13. "tabWidth": 4
  14. }
  15. }
  16. ]
  17. }