nestapp/.prettierrc.js

19 lines
304 B
JavaScript
Raw Normal View History

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