mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
export default {
|
|
printWidth: 120,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
singleQuote: true,
|
|
semi: false,
|
|
trailingComma: 'none',
|
|
bracketSpacing: true,
|
|
jsxSingleQuote: true,
|
|
jsxBracketSameLine: false,
|
|
arrowParens: 'avoid'
|
|
}
|