mirror of
https://gitee.com/bootx/dax-pay-ui
synced 2026-08-13 15:55:43 +08:00
- 从 daxpay4/daxpay4-web 同步 Vben Admin v5 版本代码 - 移除代理商模块(前端页面、API、国际化、权限码) - 清理商户页面中代理商相关引用
37 lines
791 B
JavaScript
37 lines
791 B
JavaScript
module.exports = {
|
|
// 缩进空格数
|
|
tabWidth: 2,
|
|
// 单行最大字符数
|
|
printWidth: 120,
|
|
// 使用分号
|
|
semi: true,
|
|
// Vue文件中script和style标签内容缩进
|
|
vueIndentScriptAndStyle: true,
|
|
// 使用单引号
|
|
singleQuote: true,
|
|
// 尾随逗号
|
|
trailingComma: 'all',
|
|
// 文本换行方式
|
|
proseWrap: 'never',
|
|
// HTML空格敏感性
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
// 行尾换行符
|
|
endOfLine: 'auto',
|
|
// 箭头函数参数括号
|
|
arrowParens: 'always',
|
|
// 对象括号内是否添加空格
|
|
bracketSpacing: true,
|
|
// JSX标签闭合位置
|
|
bracketSameLine: false,
|
|
overrides: [
|
|
{
|
|
// 匹配rc配置文件
|
|
files: '.*rc',
|
|
options: {
|
|
// 使用JSON解析器
|
|
parser: 'json',
|
|
},
|
|
},
|
|
],
|
|
};
|