mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 01:01:26 +08:00
12 lines
241 B
JavaScript
12 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',
|
||
|
};
|