mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 19:41:43 +08:00
22 lines
464 B
Vue
22 lines
464 B
Vue
/**
|
||
* @author chuzhixin 1204505056@qq.com (不想保留author可删除)
|
||
* @description 代码规范
|
||
*/
|
||
|
||
module.exports = {
|
||
printWidth: 80,
|
||
tabWidth: 2,
|
||
useTabs: false,
|
||
semi: false,
|
||
singleQuote: true,
|
||
quoteProps: 'as-needed',
|
||
jsxSingleQuote: false,
|
||
trailingComma: 'es5',
|
||
bracketSpacing: true,
|
||
jsxBracketSameLine: false,
|
||
arrowParens: 'always',
|
||
htmlWhitespaceSensitivity: 'ignore',
|
||
vueIndentScriptAndStyle: true,
|
||
endOfLine: 'lf',
|
||
}
|