Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/recast/.prettierrc.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

17 lines
284 B
JavaScript

module.exports = {
printWidth: 80,
trailingComma: "all",
singleQuote: false,
overrides: [
{
files: "*.md",
options: {
printWidth: 60,
// Don't reformat code examples in README
embeddedLanguageFormatting: "off",
},
},
],
};