mirror of
https://github.com/zadam/trilium.git
synced 2024-11-10 09:02:48 +08:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
//https://prettier.io/docs/en/options.html
|
|
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'none',
|
|
singleQuote: true,
|
|
printWidth: 100,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
quoteProps: "as-needed",
|
|
bracketSpacing: true,
|
|
arrowParens: "avoid"
|
|
// htmlWhitespaceSensitivity: 'ignore',
|
|
};
|