From 670868035b9c19c17ab2e2bdecb1e8836f7a8f08 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Thu, 8 Aug 2024 17:33:03 +0000 Subject: [PATCH] refactor(linter): replace Windows-style line breaks with Unix-style in test fixture (#4768) I happened to notice that 1 test fixture file had Windows-style CRLF line breaks rather than Unix-style LF. Fixing it for consistency. --- .../oxc_linter/fixtures/import/named-and-default-export.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/oxc_linter/fixtures/import/named-and-default-export.js b/crates/oxc_linter/fixtures/import/named-and-default-export.js index 92356e1a899ca..3bdc55d524950 100644 --- a/crates/oxc_linter/fixtures/import/named-and-default-export.js +++ b/crates/oxc_linter/fixtures/import/named-and-default-export.js @@ -1,3 +1,3 @@ -export default {}; - -export const foo = 10 +export default {}; + +export const foo = 10