mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +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',
|
|
};
|