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', + }, + }, + ], +};