Add style/prettier.json (fixes #592).

This commit is contained in:
Josh Goldberg 2022-10-02 01:15:14 -04:00 committed by David Anson
parent cedbdbaaf1
commit 82a5de0821
4 changed files with 34 additions and 4 deletions

25
style/prettier.json Normal file
View file

@ -0,0 +1,25 @@
{
"comment": "Disables rules that may conflict with Prettier",
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-fence-style": false,
"emphasis-style": false,
"heading-start-left": false,
"hr-style": false,
"line-length": false,
"list-indent": false,
"list-marker-space": false,
"no-blanks-blockquote": false,
"no-hard-tabs": false,
"no-missing-space-atx": false,
"no-missing-space-closed-atx": false,
"no-multiple-blanks": false,
"no-multiple-space-atx": false,
"no-multiple-space-blockquote": false,
"no-multiple-space-closed-atx": false,
"no-trailing-spaces": false,
"ol-prefix": false,
"strong-style": false,
"ul-indent": false
}