diff --git a/crates/oxc_linter/src/snapshots/eslint_order.snap b/crates/oxc_linter/src/snapshots/eslint_order.snap deleted file mode 100644 index 6bd2109432d161..00000000000000 --- a/crates/oxc_linter/src/snapshots/eslint_order.snap +++ /dev/null @@ -1,27 +0,0 @@ ---- -source: crates/oxc_linter/src/tester.rs -snapshot_kind: text ---- - ⚠ eslint(order): Import from 'fs' should occur before import from 'lodash' - ╭─[order.tsx:3:28] - 2 │ import _ from 'lodash'; - 3 │ import fs from 'fs'; - · ──── - 4 │ - ╰──── - - ⚠ eslint(order): There should be at least one empty line between import groups - ╭─[order.tsx:3:27] - 2 │ import fs from 'fs'; - 3 │ import _ from 'lodash'; // Should have newline before this - · ──────── - 4 │ - ╰──── - - ⚠ eslint(order): Imports must be sorted in asc order. 'a' should be before 'b'. - ╭─[order.tsx:3:27] - 2 │ import b from 'b'; - 3 │ import a from 'a'; - · ─── - 4 │ - ╰────