From 3a59aa595b1674e9286f4df0035b5b1e38e6957d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 1 Aug 2024 22:28:11 +0900 Subject: fix(frontend): disable ESLint `no-mixed-spaces-and-tabs` rule because it conflicts with `biome format` --- frontend/.eslintrc.cjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/.eslintrc.cjs b/frontend/.eslintrc.cjs index aa810b3..ee16293 100644 --- a/frontend/.eslintrc.cjs +++ b/frontend/.eslintrc.cjs @@ -18,6 +18,11 @@ module.exports = { // Base config extends: ["eslint:recommended"], + rules: { + // It conflicts with Biome. + "no-mixed-spaces-and-tabs": "off", + }, + overrides: [ // React { -- cgit v1.2.3-70-g09d2