2023-12-21 15:33:50 +08:00
|
|
|
// @see https://prettier.io/docs/en/options
|
|
|
|
module.exports = {
|
|
|
|
singleQuote: true,
|
|
|
|
printWidth: 100,
|
|
|
|
tabWidth: 2,
|
|
|
|
useTabs: false,
|
|
|
|
semi: false,
|
|
|
|
trailingComma: 'all',
|
|
|
|
endOfLine: 'auto',
|
2024-03-25 15:25:47 +08:00
|
|
|
htmlWhitespaceSensitivity: 'ignore',
|
2024-01-30 10:04:13 +08:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: '*.json',
|
|
|
|
options: {
|
|
|
|
trailingComma: 'none',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2023-12-21 15:33:50 +08:00
|
|
|
}
|