`` update prettier config for Ionic mobile with new endOfLine and trailingComma settings ``

This commit is contained in:
louiscklaw
2025-05-12 13:26:39 +08:00
parent cf34833d42
commit 749fef7e28

View File

@@ -1,9 +1,10 @@
{ {
"printWidth": 120, "endOfLine": "lf",
"quoteProps": "consistent",
"semi": true, "semi": true,
"singleQuote": true, "singleQuote": true,
"tabWidth": 2, "tabWidth": 2,
"trailingComma": "all", "trailingComma": "es5",
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-unused-imports-configurable"] "printWidth": 120,
"quoteProps": "consistent",
"plugins": []
} }