Signal-Desktop/libtextsecure/test/.eslintrc.js

22 lines
341 B
JavaScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
module.exports = {
env: {
browser: true,
node: false,
mocha: true,
},
parserOptions: {
sourceType: 'script',
},
rules: {
strict: 'off',
'more/no-then': 'off',
},
globals: {
assert: true,
getString: true,
},
};