pet-mini-program/.prettierrc.js

11 lines
375 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

module.exports = {
printWidth: 100,
tabWidth: 2,
useTabs: true, // 是否使用tab进行缩进默认为false
singleQuote: true, // 是否使用单引号代替双引号默认为false
semi: false, // 行尾是否使用分号默认为true
arrowParens: 'always',
endOfLine: 'auto',
vueIndentScriptAndStyle: true,
htmlWhitespaceSensitivity: 'strict',
};