mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-05-03 08:49:54 +02:00

As Prettier infers the parser from the input file path, the `parser` option can be safely removed.
18 lines
No EOL
341 B
JSON
18 lines
No EOL
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
|
|
}
|
|
}
|
|
]
|
|
} |