The Wayback Machine - https://web.archive.org/web/20211108232901/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 444 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

eslint-plugin-testing-library
Belco90
Belco90 commented Nov 1, 2021

Plugin version

v5

What problem do you want to solve?

Our current tests don't have any specific name or title to identify them. This makes it complicated to debug them, or differentiate the same test cases with different options, etc. Each test is represented by its code itself, which can be something really long, or duplicated between tests with the same code but different options

Created by Nicholas C. Zakas

Released June 2013

Latest release 3 days ago

Repository
eslint/eslint
Website
eslint.org

Related Topics

javascript linter linting