28 lines
490 B
JavaScript
28 lines
490 B
JavaScript
module.exports = {
|
|
printWidth: 140,
|
|
// tab宽度为2空格
|
|
tabWidth: 2,
|
|
semi: true,
|
|
vueIndentScriptAndStyle: false,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
proseWrap: 'never',
|
|
htmlWhitespaceSensitivity: 'strict',
|
|
endOfLine: 'auto',
|
|
plugins: ['prettier-plugin-packagejson'],
|
|
overrides: [
|
|
{
|
|
files: '.*rc',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
},
|
|
{
|
|
files: '*.html',
|
|
options: {
|
|
parser: 'html',
|
|
},
|
|
},
|
|
],
|
|
};
|