nestapp/.prettierrc.js
Leon Zeng 313b997903 init
2024-04-09 15:18:18 +08:00

19 lines
304 B
JavaScript

// .prettierrc.js
module.exports = {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"proseWrap": "never",
"endOfLine": "auto",
"semi": true,
"tabWidth": 4,
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
]
}