obsidian-plugin-confidential/.prettierrc
Felipe M. 553e088ffd
chore: scaffold Confidential plugin with bun-based toolchain
Boilerplate derived from obsidianmd/obsidian-sample-plugin, adapted to
mirror obsidian-plugin-auto-task-status: bun scripts, esbuild with
git-tag versioning, prettier/eslint/jest, husky pre-commit, Forgejo
CI/release workflows, and vault install/symlink helpers.
2026-04-18 11:55:02 +02:00

17 lines
386 B
Text

{
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"vueIndentScriptAndStyle": false
}