Files
PicList/.prettierrc
2026-06-11 02:22:23 -07:00

32 lines
717 B
Plaintext

{
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 120,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"endOfLine": "lf",
"plugins": ["prettier-plugin-tailwindcss"],
"tailwindStylesheet": "./src/renderer/index.css",
"overrides": [
{
"files": "*.md",
"options": {
"parser": "markdown",
"proseWrap": "preserve",
"embeddedLanguageFormatting": "auto",
"printWidth": 120
}
}
]
}