UNPKG

ecash-coinselect

Version:

An unspent transaction output (UTXO) selection module for eCash.

34 lines (33 loc) 931 B
// Copyright (c) 2018 Daniel Cousens // Copyright (c) 2023 Bitcoin ABC // Distributed under the MIT software license, see the accompanying // file LICENSE or http://www.opensource.org/licenses/mit-license.php. 'use strict'; module.exports = { env: { node: true, commonjs: true, es2021: true, mocha: true, }, overrides: [], extends: 'eslint:recommended', parserOptions: { ecmaVersion: 'latest', }, plugins: ['header'], rules: { 'strict': 'error', 'header/header': [ 2, 'line', [ ' Copyright (c) 2018 Daniel Cousens', ' Copyright (c) 2023 Bitcoin ABC', ' Distributed under the MIT software license, see the accompanying', ' file LICENSE or http://www.opensource.org/licenses/mit-license.php.', ], 1, ], }, };