From 7a3102b4387c5a14bcfb97118db2e9594f002f3a Mon Sep 17 00:00:00 2001 From: Pixelastic Date: Fri, 24 Aug 2018 13:23:46 +0200 Subject: [PATCH] Adding Prettier for markdown prettification --- docs/.prettierrc.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/.prettierrc.js diff --git a/docs/.prettierrc.js b/docs/.prettierrc.js new file mode 100644 index 00000000..c4d61bfd --- /dev/null +++ b/docs/.prettierrc.js @@ -0,0 +1,12 @@ +/* eslint-disable import/no-commonjs */ +module.exports = { + overrides: [ + { + files: '*.md', + options: { + printWidth: 80, + parser: 'markdown', + }, + }, + ], +};