2020-09-28 20:19:10 +08:00
|
|
|
module.exports = {
|
|
|
|
|
printWidth: 100,
|
|
|
|
|
semi: true,
|
|
|
|
|
vueIndentScriptAndStyle: true,
|
|
|
|
|
singleQuote: true,
|
2021-08-24 22:41:48 +08:00
|
|
|
trailingComma: 'all',
|
2020-09-28 20:19:10 +08:00
|
|
|
proseWrap: 'never',
|
|
|
|
|
htmlWhitespaceSensitivity: 'strict',
|
2021-07-08 23:20:49 +08:00
|
|
|
endOfLine: 'auto',
|
2023-04-04 16:55:34 +08:00
|
|
|
plugins: ['prettier-plugin-packagejson'],
|
2023-04-04 17:29:58 +08:00
|
|
|
overrides: [
|
|
|
|
|
{
|
|
|
|
|
files: '.*rc',
|
|
|
|
|
options: {
|
|
|
|
|
parser: 'json',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
2020-09-28 20:19:10 +08:00
|
|
|
};
|