1
0
Fork 0

Adding Prettier for markdown prettification

This commit is contained in:
Pixelastic 2018-08-24 13:23:46 +02:00
parent 4dc998f01b
commit 7a3102b438

12
docs/.prettierrc.js Normal file
View file

@ -0,0 +1,12 @@
/* eslint-disable import/no-commonjs */
module.exports = {
overrides: [
{
files: '*.md',
options: {
printWidth: 80,
parser: 'markdown',
},
},
],
};