mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-18 13:01:02 +08:00
24 lines
433 B
Plaintext
24 lines
433 B
Plaintext
{
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"endOfLine": "lf",
|
|
"proseWrap": "preserve",
|
|
"plugins": ["prettier-plugin-java"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.java",
|
|
"options": {
|
|
"printWidth": 100,
|
|
"tabWidth": 2,
|
|
"semi": true,
|
|
"singleQuote": false,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|
|
]
|
|
}
|