mirror of
https://github.com/thelounge/thelounge.git
synced 2026-03-14 14:35:50 +01:00
Code formatted automatically, see <https://prettier.io/blog/2023/07/05/3.0.0>. Support for config files in ESM (prettier/prettier#13130). Remove deprecated `disableLanguages` option for VSCode Extension (prettier/prettier-vscode@5d69543).
15 lines
244 B
JavaScript
15 lines
244 B
JavaScript
/** @type {import("prettier").Config} */
|
|
export default {
|
|
arrowParens: "always",
|
|
bracketSpacing: false,
|
|
printWidth: 100,
|
|
trailingComma: "es5",
|
|
overrides: [
|
|
{
|
|
files: "*.webmanifest",
|
|
options: {
|
|
parser: "json",
|
|
},
|
|
},
|
|
],
|
|
};
|