1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-05-07 02:29:53 +02:00

Use Prettier for Markdown

As Prettier infers the parser from the input file path, the `parser` option can be safely removed.
This commit is contained in:
Jakob Krigovsky 2020-05-02 20:09:11 +02:00
parent 9ceee97d99
commit 04a5d36eb6
6 changed files with 67 additions and 42 deletions

View file

@ -7,5 +7,12 @@
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"parser": "typescript"
"overrides": [
{
"files": "**/*.md",
"options": {
"tabWidth": 2
}
}
]
}