Skip to content

Commit

Permalink
chore(prettier): fix prettier config
Browse files Browse the repository at this point in the history
KillWolfVlad committed Jul 3, 2021
1 parent f934aeb commit f0f4cec
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
{
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"printWidth": 120,
"endOfLine": "auto",
"overrides": [
{
"files": ["*.json", ".prettierrc"],
"options": {
"tabWidth": 2,
"parser": "json"
"parser": "json",
"tabWidth": 2
}
},
{
"files": ["*.md"],
"options": {
"tabWidth": 2
}
}
]
],
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none"
}

0 comments on commit f0f4cec

Please sign in to comment.