You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
515 B
12 lines
515 B
module.exports = {
|
|
singleQuote: true, // 使用单引号
|
|
semi: true, // 使用分号
|
|
trailingComma: 'es5', // 在对象或数组的最后一个元素后添加逗号
|
|
printWidth: 100, // 每行的最大字符数
|
|
tabWidth: 4, // 缩进宽度
|
|
useTabs: true, // 使用制表符缩进
|
|
jsxSingleQuote: false, // JSX 中使用单引号
|
|
bracketSpacing: true, // 对象字面量的括号是否换行
|
|
jsxBracketSameLine: false, // JSX 的闭合括号是否在同一行
|
|
endOfLine: 'auto', // 自动处理换行符
|
|
};
|