@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
31 lines (30 loc) • 607 B
JavaScript
module.exports = {
env: {
browser: true,
es6: true,
},
overrides: [
{
files: ["src/**/*.test.{ts,tsx}"],
env: {
"jest/globals": true,
},
plugins: ["jest"],
rules: {
"jest/no-restricted-matchers": [
"error",
{
toBeFalsy: null,
toBeTruthy: null,
toBeDefined: null,
},
],
},
},
],
rules: {
"no-console": ["error", { allow: ["warn", "error"] }],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "warn",
},
};