aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-01 22:28:11 +0900
committernsfisis <nsfisis@gmail.com>2024-08-01 22:28:11 +0900
commit3a59aa595b1674e9286f4df0035b5b1e38e6957d (patch)
treef3eb93e716cf1c6da2bccc112ce3b7cebff95222
parent8f2cceacc8fde328033de7f05bb12e7b1246dd86 (diff)
downloadiosdc-japan-2024-albatross-3a59aa595b1674e9286f4df0035b5b1e38e6957d.tar.gz
iosdc-japan-2024-albatross-3a59aa595b1674e9286f4df0035b5b1e38e6957d.tar.zst
iosdc-japan-2024-albatross-3a59aa595b1674e9286f4df0035b5b1e38e6957d.zip
fix(frontend): disable ESLint `no-mixed-spaces-and-tabs` rule because it conflicts with `biome format`
-rw-r--r--frontend/.eslintrc.cjs5
1 files changed, 5 insertions, 0 deletions
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
{