mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-11-29 18:28:09 +08:00
a51feb0311
* feat: update extension UI * fix(components): [manage-access] a tag rename to span * feat: update e2e Co-authored-by: buqiyuan <1743369777@qq.com> Co-authored-by: 夜鹰 <17kungfuboy@gmail.com>
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
module.exports = {
|
|
singleQuote: true,
|
|
useTabs: false,
|
|
printWidth: 140,
|
|
tabWidth: 2,
|
|
semi: true,
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
proseWrap: 'preserve',
|
|
trailingComma: 'none',
|
|
endOfLine: 'lf'
|
|
};
|