mirror of
https://github.com/imsyy/DailyHotApi.git
synced 2026-01-12 05:04:56 +08:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
export default {
|
|
// see https://prettier.io/docs/en/options.html
|
|
// 优先使用单引号
|
|
singleQuote: false,
|
|
// 尾随逗号
|
|
trailingComma: "all",
|
|
// 缩进空格数
|
|
tabWidth: 2,
|
|
// 使用分号
|
|
semi: true,
|
|
// 换行符
|
|
printWidth: 100,
|
|
};
|