Adding Prettier for markdown prettification
This commit is contained in:
parent
4dc998f01b
commit
7a3102b438
1 changed files with 12 additions and 0 deletions
12
docs/.prettierrc.js
Normal file
12
docs/.prettierrc.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/* eslint-disable import/no-commonjs */
|
||||
module.exports = {
|
||||
overrides: [
|
||||
{
|
||||
files: '*.md',
|
||||
options: {
|
||||
printWidth: 80,
|
||||
parser: 'markdown',
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
Loading…
Reference in a new issue