36 lines
678 B
Plaintext
36 lines
678 B
Plaintext
{
|
|
"$schema": "https://json.schemastore.org/prettierrc",
|
|
"printWidth": 120,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"singleQuote": true,
|
|
"quoteProps": "as-needed",
|
|
"trailingComma": "all",
|
|
"bracketSpacing": true,
|
|
"arrowParens": "always",
|
|
"rangeStart": 0,
|
|
"vueIndentScriptAndStyle": false,
|
|
"endOfLine": "auto",
|
|
"semi": true,
|
|
"requirePragma": false,
|
|
"bracketSameLine": true,
|
|
"htmlWhitespaceSensitivity": "ignore",
|
|
"plugins": [
|
|
"prettier-plugin-java"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": "*.json",
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
},
|
|
{
|
|
"files": "*.java",
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
}
|
|
]
|
|
}
|