mirror of
https://github.com/zadam/trilium.git
synced 2024-12-25 08:43:03 +08:00
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
//https://prettier.io/docs/en/options.html
|
|
module.exports = {
|
|
semi: true,
|
|
trailingComma: 'es5',
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
tabWidth: 4,
|
|
// useTabs: false,
|
|
// bracketSpacing: true,
|
|
// htmlWhitespaceSensitivity: 'ignore',
|
|
};
|