amis-rpc-design/node_modules/recast/.prettierrc.js

17 lines
284 B
JavaScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
module.exports = {
printWidth: 80,
trailingComma: "all",
singleQuote: false,
overrides: [
{
files: "*.md",
options: {
printWidth: 60,
// Don't reformat code examples in README
embeddedLanguageFormatting: "off",
},
},
],
};