-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Labels
locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.
Description
Prettier 3.0.0
module.exports = {
semi: true,
singleQuote: true,
singleAttributePerLine: true,
trailingComma: 'es5',
printWidth: 120,
arrowParens: 'avoid',
endOfLine: 'lf',
overrides: [
{
files: '.prettierrc',
options: { parser: 'json' },
},
],
};Input:
<!DOCTYPE html>
<html
lang="zh-Hans"
translate="no"
>
<head> </head>
<body></body>
</html>Output:
<!doctype html>
<html
lang="zh-Hans"
translate="no"
>
<head> </head>
<body></body>
</html>Expected behavior:
Please do not modify the DOCTYPE.
romanzhivo, andy-preston, miguelSWE, tefkah, hf-kklein and 3 morefvergani-sumo
Metadata
Metadata
Assignees
Labels
locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.