diff options
author | Justice Almanzar <superdash993@gmail.com> | 2022-12-19 17:59:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 22:59:54 +0000 |
commit | 989bd36eeb6dd6c4b391900765847cdcf87484d9 (patch) | |
tree | 86b15ce6804500b56f9f3c6b807d5fbb8aa6dad4 /.eslintrc.json | |
parent | 4974c53f9cc3a3adccfa11f4af68ac4f190b0fc8 (diff) | |
download | Vencord-989bd36eeb6dd6c4b391900765847cdcf87484d9.tar.gz Vencord-989bd36eeb6dd6c4b391900765847cdcf87484d9.tar.bz2 Vencord-989bd36eeb6dd6c4b391900765847cdcf87484d9.zip |
refactor: identifier escapes + "self" group (#339)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 9bbe4f5..4cb86e0 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -84,7 +84,9 @@ "no-extra-semi": "error", "consistent-return": ["warn", { "treatUndefinedAsUnspecified": true }], "dot-notation": "error", - "no-useless-escape": "error", + "no-useless-escape": ["error", { + "extra": "i" + }], "no-fallthrough": "error", "for-direction": "error", "no-async-promise-executor": "error", |