`` update prettier config to enforce LF line endings and ES5 trailing commas ``

This commit is contained in:
louiscklaw
2025-05-12 13:29:40 +08:00
parent 749fef7e28
commit 975a528b49

View File

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