We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714dc08 commit d4a4ae0Copy full SHA for d4a4ae0
src/formatter/htmlbeautifier.ts
@@ -233,7 +233,7 @@ export default class HtmlBeautifier {
233
const eol = vscode.workspace.getConfiguration().get("files.eol");
234
235
// Determine newline character(s) based on the 'files.eol' setting and the platform
236
- let newline = eol === "auto" ? (this.isWindows() ? "\r\n" : "\n") : eol;
+ const newline = eol === "auto" ? (this.isWindows() ? "\r\n" : "\n") : eol;
237
238
// Append the newline to the result
239
result += newline;
0 commit comments