diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:28:11 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-01 22:28:11 +0900 |
| commit | 3a59aa595b1674e9286f4df0035b5b1e38e6957d (patch) | |
| tree | f3eb93e716cf1c6da2bccc112ce3b7cebff95222 | |
| parent | 8f2cceacc8fde328033de7f05bb12e7b1246dd86 (diff) | |
| download | iosdc-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.cjs | 5 |
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 { |
