Files
Yiqun/.prettierrc
2025-04-24 10:24:42 -03:00

24 lines
378 B
Plaintext

{
"useTabs": false,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "all",
"printWidth": 120,
"arrowParens": "always",
"semi": true,
"overrides": [
{
"files": ["*.py"],
"options": {
"tabWidth": 4
}
},
{
"files": ".eslintrc",
"options": {
"parser": "json"
}
}
]
}