From 10dcc9de5c2b2b5fa8ebe60a00c624c3ea258ca8 Mon Sep 17 00:00:00 2001 From: Sysix Date: Mon, 11 Aug 2025 19:21:34 +0200 Subject: [PATCH] test(oxlint): enable tsgolint with config parameter for windows --- apps/oxlint/src/lint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/oxlint/src/lint.rs b/apps/oxlint/src/lint.rs index d342bbfb4482b..9d0831000821d 100644 --- a/apps/oxlint/src/lint.rs +++ b/apps/oxlint/src/lint.rs @@ -1223,7 +1223,7 @@ mod test { } #[test] - #[cfg(not(any(target_os = "windows", target_endian = "big")))] + #[cfg(not(target_endian = "big"))] fn test_tsgolint_config() { let args = &["--type-aware", "-c", "config-test.json"]; Tester::new().with_cwd("fixtures/tsgolint".into()).test_and_snapshot(args);