This commit is contained in:
maropboia 2024-05-03 11:38:23 +06:00
parent 404e4dce98
commit 1015626e41

View file

@ -1,6 +1,12 @@
proseWrap: always // This is a JavaScript code format configuration using the prettier plugin.
semi: false // It specifies various formatting options such as wrapping prose (proseWrap),
singleQuote: true // use of semicolons (semi), single or double quotes (singleQuote),
printWidth: 80 // print width (printWidth), trailing commas (trailingComma),
trailingComma: none // and handling of HTML whitespace sensitivity (htmlWhitespaceSensitivity).
htmlWhitespaceSensitivity: ignore
proseWrap: 'always' // Always wrap prose to the next line if it exceeds the print width.
semi: false // Do not use semicolons to end statements.
singleQuote: true // Use single quotes to enclose strings.
printWidth: 80 // Limit line length to 80 characters.
trailingComma: 'none' // Do not use trailing commas in arrays or objects.
htmlWhitespaceSensitivity: 'ignore' // Ignore changes in whitespace sensitivity in HTML.