2023-03-15 09:07:13 +08:00

18 lines
616 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//////////////////////////////////////////////////////////////////
// 官网参考https://prettier.io/docs/en/options.html#tab-width //
////////////////////////////////////////////////////////////////
module.exports = {
/**.pellerrc 的架构 */
$schema: 'https://json.schemastore.org/prettierrc',
/**在所有代码语句的末尾添加分号 */
semi: true,
/**使用 4 个空格缩进 */
tabWidth: 4,
/**每行最多 160 字符 */
printWidth: 160,
/**指定文件的结尾换行符 */
endOfLine: 'auto',
/**使用单引号代替双引号 */
singleQuote: true,
};