Files
niumalll/admin-system/.prettierrc
2025-09-02 21:59:27 +08:00

40 lines
711 B
Plaintext

{
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"printWidth": 100,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid",
"endOfLine": "lf",
"vueIndentScriptAndStyle": false,
"htmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": "*.vue",
"options": {
"parser": "vue"
}
},
{
"files": ["*.ts", "*.tsx"],
"options": {
"parser": "typescript"
}
},
{
"files": ["*.json"],
"options": {
"parser": "json"
}
},
{
"files": ["*.scss", "*.css"],
"options": {
"parser": "scss"
}
}
]
}