Files
formipay/node_modules/eslint-plugin-jest/docs/rules/unbound-method.md
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

1.7 KiB

Enforce unbound methods are called with their expected scope (unbound-method)

💭 This rule requires type information.

Rule details

This rule extends the base @typescript-eslint/unbound-method rule, meaning you must depend on @typescript-eslint/eslint-plugin for it to work. It adds support for understanding when it's ok to pass an unbound method to expect calls.

See the @typescript-eslint documentation for more details on the unbound-method rule.

Note that while this rule requires type information to work, it will fail silently when not available allowing you to safely enable it on projects that are not using TypeScript.

How to use

{
  parser: '@typescript-eslint/parser',
  parserOptions: {
    project: 'tsconfig.json',
    ecmaVersion: 2020,
    sourceType: 'module',
  },
  overrides: [
    {
      files: ['test/**'],
      plugins: ['jest'],
      rules: {
        // you should turn the original rule off *only* for test files
        '@typescript-eslint/unbound-method': 'off',
        'jest/unbound-method': 'error',
      },
    },
  ],
  rules: {
    '@typescript-eslint/unbound-method': 'error',
  },
}

This rule should be applied to your test files in place of the original rule, which should be applied to the rest of your codebase.

Options

See @typescript-eslint/unbound-method options (e.g. ignoreStatic).

Taken with ❤️ from @typescript-eslint core