mirror of
https://github.com/nextcloud/spreed.git
synced 2025-08-15 20:33:18 +00:00
fix: apply 'no-redeclare' rule
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
This commit is contained in:
@ -31,7 +31,6 @@ export default [
|
||||
'no-console': 'off', // non-fixable
|
||||
'no-constant-condition': 'off', // non-fixable
|
||||
'no-empty': 'off', // non-fixable
|
||||
'no-redeclare': 'off', // non-fixable
|
||||
'no-undef': 'off', // non-fixable
|
||||
'no-unused-vars': 'off', // non-fixable
|
||||
'no-use-before-define': 'off', // non-fixable
|
||||
|
@ -6,8 +6,6 @@
|
||||
* the worker from Nextcloud.
|
||||
*/
|
||||
|
||||
/* global RTCRtpScriptTransform */
|
||||
|
||||
import Worker from './JitsiEncryptionWorker.worker.js'
|
||||
|
||||
// Flag to set on senders / receivers to avoid setting up the encryption transform
|
||||
|
@ -5,8 +5,6 @@
|
||||
* Based on code from https://github.com/jitsi/jitsi-meet
|
||||
*/
|
||||
|
||||
/* global TransformStream */
|
||||
|
||||
// Worker for E2EE/Insertable streams.
|
||||
|
||||
import { Context } from './JitsiEncryptionWorkerContext.js'
|
||||
|
@ -5,8 +5,6 @@
|
||||
* Based on code from https://github.com/jitsi/jitsi-meet
|
||||
*/
|
||||
|
||||
/* global BigInt */
|
||||
|
||||
import { deriveKeys, importKey, ratchet } from './crypto-utils.js'
|
||||
|
||||
// We use a ringbuffer of keys so we can change them and still decode packets that were
|
||||
|
Reference in New Issue
Block a user