1
0
mirror of https://gitea.com/actions/cache.git synced 2025-02-24 12:40:45 +07:00
cache/.prettierrc.json
Jakob Krigovsky 04a5d36eb6 Use Prettier for Markdown
As Prettier infers the parser from the input file path, the `parser` option can be safely removed.
2020-05-02 20:09:11 +02:00

18 lines
341 B
JSON

{
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"overrides": [
{
"files": "**/*.md",
"options": {
"tabWidth": 2
}
}
]
}