ESLint InterlaceESLint Interlace

Troubleshooting

Common issues and solutions for ESLint Interlace

Common Issues

Diagnostic Commands

Check ESLint Version

npx eslint --version
# Expected: v9.x.x or higher

List Installed Plugins

npm ls | grep eslint-plugin

Debug Configuration

npx eslint --print-config src/index.ts

Verify Rule is Active

npx eslint --no-ignore --rule 'browser-security/no-insecure-url: error' src/

Check File Matching

npx eslint --debug src/file.ts 2>&1 | head -50

Getting Help

Still Stuck?

If you're still experiencing issues:

  1. Search existing issues on GitHub
  2. Create a minimal reproduction — A small repo that shows the problem
  3. Include versions — Node, ESLint, and plugin versions
  4. Share your config — The full eslint.config.js file
# Generate a system report
npx eslint --version && node --version && npm ls eslint eslint-config-interlace

On this page