module.exports = {
|
|
//对象最后不加逗号
|
|
trailingComma: 'none',
|
|
//开启 eslint 支持
|
|
eslintIntegration: true,
|
|
//使用单引号
|
|
singleQuote: true,
|
|
//结尾不加分号
|
|
semi: false
|
|
}
|