mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
* Commit lint staging * Add mdx parser for prettier * fix css * Fixed lint staged for md * Fixed markdowns * Revert prettifying markdown since build fails * Removed css command and included with tsx * replace with older readme and contibuting
22 lines
322 B
Plaintext
22 lines
322 B
Plaintext
{
|
|
"bracketSpacing": false,
|
|
"singleQuote": true,
|
|
"bracketSameLine": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 80,
|
|
"overrides": [
|
|
{
|
|
"files": "*.css",
|
|
"options": {
|
|
"parser": "css"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"parser": "mdx"
|
|
}
|
|
}
|
|
]
|
|
}
|