nestapp/.prettierrc.js
2025-06-15 14:13:01 +08:00

18 lines
321 B
JavaScript

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