mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-04 21:32:44 +08:00
21 lines
430 B
Vue
21 lines
430 B
Vue
/**
|
||
* @author https://vuejs-core.cn (不想保留author可删除)
|
||
* @description 代码规范
|
||
*/
|
||
|
||
module.exports = {
|
||
printWidth: 140,
|
||
tabWidth: 2,
|
||
useTabs: false,
|
||
semi: false,
|
||
singleQuote: true,
|
||
quoteProps: 'as-needed',
|
||
jsxSingleQuote: false,
|
||
trailingComma: 'es5',
|
||
bracketSpacing: true,
|
||
arrowParens: 'always',
|
||
htmlWhitespaceSensitivity: 'ignore',
|
||
vueIndentScriptAndStyle: true,
|
||
endOfLine: 'lf',
|
||
}
|