Bump prettier to v3 and format all files

This commit is contained in:
Felipe Santos
2024-06-10 00:29:50 -03:00
parent 2a637d92b9
commit fccb4c9afd
138 changed files with 6445 additions and 1678 deletions
+16
View File
@@ -0,0 +1,16 @@
// @ts-check
/**
* @see https://prettier.io/docs/en/configuration.html
* @type {import('prettier').Options}
* */
const config = {
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 89,
tabWidth: 2,
embeddedLanguageFormatting: 'auto',
};
export default config;