1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

feat(prettierOnMarkdown):Added prettier config default to config manager

This commit is contained in:
nathan-castlehow
2019-06-16 09:40:36 +08:00
parent 33161e46e6
commit de0af153bc

View File

@@ -66,7 +66,15 @@ export const DEFAULT_CONFIG = {
spellcheck: false,
enableSmartPaste: false,
enableMarkdownLint: false,
customMarkdownLintConfig: DEFAULT_MARKDOWN_LINT_CONFIG
customMarkdownLintConfig: DEFAULT_MARKDOWN_LINT_CONFIG,
prettierConfig: ` {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"parser":"markdown"
}`
},
preview: {
fontSize: '14',