From 46f9ba5d8c295454381655e6ec02ad3cf8bd79db Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 6 Mar 2026 02:18:40 +0900 Subject: style: switch from tab to space indentation in frontend and worker/php Update biome.json indentStyle from "tab" to "space" and reformat all files in both workspaces. Co-Authored-By: Claude Opus 4.6 --- frontend/eslint.config.js | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'frontend/eslint.config.js') diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js index 900096f..bd43dfa 100644 --- a/frontend/eslint.config.js +++ b/frontend/eslint.config.js @@ -7,27 +7,27 @@ import globals from "globals"; import ts from "typescript-eslint"; export default defineConfig( - globalIgnores(["node_modules/", "dist/"]), - js.configs.recommended, - ts.configs.recommended, - react.configs.flat.recommended, - react.configs.flat["jsx-runtime"], - reactHooks.configs.flat["recommended-latest"], - jsxA11y.flatConfigs.recommended, - { - languageOptions: { - globals: { - ...globals.browser, - ...globals.node, - }, - }, - }, - { - settings: { - react: { - version: "detect", - }, - linkComponents: [{ name: "Link", linkAttribute: "to" }], - }, - }, + globalIgnores(["node_modules/", "dist/"]), + js.configs.recommended, + ts.configs.recommended, + react.configs.flat.recommended, + react.configs.flat["jsx-runtime"], + reactHooks.configs.flat["recommended-latest"], + jsxA11y.flatConfigs.recommended, + { + languageOptions: { + globals: { + ...globals.browser, + ...globals.node, + }, + }, + }, + { + settings: { + react: { + version: "detect", + }, + linkComponents: [{ name: "Link", linkAttribute: "to" }], + }, + }, ); -- cgit v1.3.1