The Wayback Machine - https://web.archive.org/web/20211013143113/https://github.com/topics/eslint-plugin
Skip to content
#

eslint-plugin

eslint logo

ESLint is an extensible static-analysis tool for JavaScript and related languages that helps catch errors before they break something in production.

Here are 434 public repositories matching this topic...

leonheess
leonheess commented Aug 16, 2021

Please describe what the rule should do:
In Vue you can use test($event.detail) as well as event => test(event.detail) to achieve the same thing. 1. should be preferred.

  1. test($event.detail)
<Component
  @click="test($event.detail)"
/>
  1. event => test(event.detail)
<Component
  @click="event => test(event.detail)"
/>

**What category should

Created by Nicholas C. Zakas

Released June 2013

Latest release 4 days ago

Repository
eslint/eslint
Website
eslint.org

Related Topics

javascript linter linting