Format markdown files

This commit is contained in:
Przemek Więch
2026-07-05 22:51:04 +02:00
parent 72abbc7e7e
commit 85df7d13bb
27 changed files with 3602 additions and 1541 deletions

View File

@@ -2,7 +2,16 @@ const config = {
bracketSpacing: false,
endOfLine: 'lf',
singleQuote: true,
printWidth: 80,
plugins: ['prettier-plugin-organize-imports'],
overrides: [
{
files: '*.md',
options: {
proseWrap: 'always',
},
},
],
};
export default config;