From ffec2f6bc19dda2b0a88bc61c3a713ac8d3460b2 Mon Sep 17 00:00:00 2001 From: Yiming Li Date: Thu, 10 Sep 2026 22:54:54 +0800 Subject: [PATCH] fix: sort the imports of the React TypeScript Rslint config The named imports were out of order, so a project scaffolded with Rslint and Biome failed biome check on rslint.config.ts. --- template-rslint/react-ts/rslint.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template-rslint/react-ts/rslint.config.ts b/template-rslint/react-ts/rslint.config.ts index 951771a..ddd0824 100644 --- a/template-rslint/react-ts/rslint.config.ts +++ b/template-rslint/react-ts/rslint.config.ts @@ -1,9 +1,9 @@ import { defineConfig, js, - ts, - reactPlugin, reactHooksPlugin, + reactPlugin, + ts, } from '@rslint/core'; export default defineConfig([