diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-25 16:14:11 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-26 10:01:42 +0200 |
commit | 98ab5dc81048d47d08a231f17698128f959e59b2 (patch) | |
tree | 7f74f835dc35d9f72918c56857f7f28b70d7053f /.eslintrc.json | |
parent | 851675c5591dcab1070183f0ed1b1a788de07d2c (diff) | |
download | PeerTube-98ab5dc81048d47d08a231f17698128f959e59b2.tar.gz PeerTube-98ab5dc81048d47d08a231f17698128f959e59b2.tar.zst PeerTube-98ab5dc81048d47d08a231f17698128f959e59b2.zip |
Remove useless async
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 042254c95..a49a9e71b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json | |||
@@ -89,6 +89,10 @@ | |||
89 | "@typescript-eslint/no-empty-interface": "off", | 89 | "@typescript-eslint/no-empty-interface": "off", |
90 | "@typescript-eslint/no-extraneous-class": "off", | 90 | "@typescript-eslint/no-extraneous-class": "off", |
91 | "@typescript-eslint/no-use-before-define": "off", | 91 | "@typescript-eslint/no-use-before-define": "off", |
92 | |||
93 | "require-await": "off", | ||
94 | "@typescript-eslint/require-await": "error", | ||
95 | |||
92 | // bugged but useful | 96 | // bugged but useful |
93 | "@typescript-eslint/restrict-plus-operands": "off" | 97 | "@typescript-eslint/restrict-plus-operands": "off" |
94 | }, | 98 | }, |