.prettierrc 301 B

1234567891011121314151617
  1. {
  2. "semi": true,
  3. "singleQuote": true,
  4. "trailingComma": "es5",
  5. "printWidth": 100,
  6. "tabWidth": 2,
  7. "useTabs": false,
  8. "bracketSpacing": true,
  9. "arrowParens": "avoid",
  10. "endOfLine": "lf",
  11. "overrides": [
  12. {
  13. "files": ".prettierrc",
  14. "options": { "parser": "json" }
  15. }
  16. ]
  17. }