14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
|
/**
|
||
|
* @type {import('prettier').Config}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
printWidth: 100,
|
||
|
semi: true,
|
||
|
vueIndentScriptAndStyle: true,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'all',
|
||
|
proseWrap: 'never',
|
||
|
htmlWhitespaceSensitivity: 'strict',
|
||
|
endOfLine: 'auto',
|
||
|
};
|