aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
diff options
context:
space:
mode:
authorJustice Almanzar <superdash993@gmail.com>2022-12-19 17:59:54 -0500
committerGitHub <noreply@github.com>2022-12-19 22:59:54 +0000
commit989bd36eeb6dd6c4b391900765847cdcf87484d9 (patch)
tree86b15ce6804500b56f9f3c6b807d5fbb8aa6dad4 /.eslintrc.json
parent4974c53f9cc3a3adccfa11f4af68ac4f190b0fc8 (diff)
downloadVencord-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.json4
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",