11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
/**
|
|
* @type {import("prettier").Options}
|
|
*/
|
|
|
|
const rootConfig = import("../prettier.config.js");
|
|
|
|
export default {
|
|
...rootConfig,
|
|
vueIndentScriptAndStyle: true,
|
|
singleAttributePerLine: true,
|
|
};
|