From e1bc1c47211520da3917b73b6754dfb3c733aefe Mon Sep 17 00:00:00 2001 From: Alexander Brown <448862+DrJKL@users.noreply.github.com> Date: Sun, 1 Feb 2026 01:25:52 -0800 Subject: [PATCH] chore: enable additional lint rules for browser_tests - no-async-promise-executor - no-control-regex - no-useless-rename - no-unused-private-class-members - unicorn/no-empty-file Amp-Thread-ID: https://ampcode.com/threads/T-019c187a-abb8-72f9-9fe0-c1044e096770 Co-authored-by: Amp --- .oxlintrc.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.oxlintrc.json b/.oxlintrc.json index 5dfa8ddf8..fb5d00dab 100644 --- a/.oxlintrc.json +++ b/.oxlintrc.json @@ -114,7 +114,12 @@ { "files": ["browser_tests/**/*.ts"], "rules": { - "typescript/no-explicit-any": "error" + "typescript/no-explicit-any": "error", + "no-async-promise-executor": "error", + "no-control-regex": "error", + "no-useless-rename": "error", + "no-unused-private-class-members": "error", + "unicorn/no-empty-file": "error" } } ]