From 451532f6f1f6ea039fd03ef1f00adf7f926c3f8e Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Fri, 16 Jan 2026 19:55:10 -0700 Subject: [PATCH] Fix oxlint config file name and use a valid config. --- .oxlintrc.json | 11 +++++++++++ .oxlintrc.jsonc | 4 ---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .oxlintrc.json delete mode 100644 .oxlintrc.jsonc diff --git a/.oxlintrc.json b/.oxlintrc.json new file mode 100644 index 000000000..a7551c871 --- /dev/null +++ b/.oxlintrc.json @@ -0,0 +1,11 @@ +{ + "$schema": "./node_modules/oxlint/configuration_schema.json", + "plugins": [ + "unicorn", + "typescript", + "oxc" + ], + "categories": { + "correctness": true + } +} diff --git a/.oxlintrc.jsonc b/.oxlintrc.jsonc deleted file mode 100644 index 115aa1a81..000000000 --- a/.oxlintrc.jsonc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/oxlintrc", - "extends": ["recommended"] -}