6 lines
162 B
JavaScript
6 lines
162 B
JavaScript
|
module.exports = {
|
||
|
singleQuote: true, // 使用单引号
|
||
|
semi: true, // 不使用分号
|
||
|
// trailingComma: 'all', // 在对象和数组末尾加上逗号
|
||
|
};
|