mirror of
https://gitee.com/bootx/dax-pay-h5.git
synced 2025-10-14 06:04:51 +00:00
21 lines
470 B
JavaScript
21 lines
470 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false, //行位是否使用分号
|
|
vueIndentScriptAndStyle: true,
|
|
singleQuote: true,
|
|
quoteProps: 'as-needed',
|
|
bracketSpacing: true,
|
|
trailingComma: 'all',
|
|
jsxBracketSameLine: false,
|
|
jsxSingleQuote: false,
|
|
arrowParens: 'always',
|
|
insertPragma: false,
|
|
requirePragma: false,
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
rangeStart: 0,
|
|
};
|