diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 13:47:27 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-27 19:12:25 -0300 |
commit | 02ebeddb325fd2589a7c013a1f366ed7093d5a69 (patch) | |
tree | 9fc106a0e10708f40fbe533a6225cec5a06c31a3 | |
parent | 3a4c45000885b776b6e3012e57199a35ad7c7e33 (diff) |
eslint: disable a couple rules
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index ac1a4e63..430d4e36 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -21,6 +21,8 @@ }], "no-cond-assign": ["off"], "no-constant-condition": ["off"], - "no-unsafe-finally": ["off"] + "no-unsafe-finally": ["off"], + "no-self-assign": ["off"], + "require-yield": ["off"] } } |