-
Updated
Nov 13, 2021 - JavaScript
ESLint

ESLint is an extensible static-analysis tool for JavaScript and related languages that helps catch errors before they break something in production.
Here are 8,004 public repositories matching this topic...
-
Updated
Nov 14, 2021 - JavaScript
-
Updated
Nov 12, 2021 - JavaScript
-
Updated
Sep 26, 2021 - JavaScript
-
Updated
Sep 21, 2021 - JavaScript
When we added syntax support for this with the TS4.4 support, we did not add proper support for scope analysis of this.
Currently scope analysis will "work" because the analyser will just traverse the block body - but it will create an incorrect scope tree because a new scope will not be created for the block scope created by the static block.
Repro
declare function someConditi
-
Updated
Nov 14, 2021 - JavaScript
-
Updated
Nov 13, 2021 - JavaScript
-
Updated
Nov 7, 2021 - JavaScript
-
Updated
Mar 7, 2019 - JavaScript
-
Updated
Nov 10, 2021 - JavaScript
-
Updated
Nov 12, 2021 - Emacs Lisp
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.
test($event.detail)
<Component
@click="test($event.detail)"
/>
event => test(event.detail)
<Component
@click="event => test(event.detail)"
/>
**What category should
-
Updated
Nov 9, 2021 - JavaScript
-
Updated
Oct 30, 2021 - JavaScript
-
Updated
Nov 13, 2021 - TypeScript
-
Updated
Aug 18, 2021 - JavaScript
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Nov 4, 2021
-
Updated
Nov 10, 2021 - JavaScript
-
Updated
Jul 3, 2021
-
Updated
Oct 18, 2021 - JavaScript
-
Updated
Oct 27, 2021 - JavaScript
-
Updated
Nov 1, 2021 - JavaScript
-
Updated
Nov 12, 2021 - JavaScript
-
Updated
Jul 9, 2021 - TypeScript
-
Updated
Apr 27, 2021 - JavaScript
Created by Nicholas C. Zakas
Released June 2013
Latest release 8 days ago
- Repository
- eslint/eslint
- Website
- eslint.org
What rule do you want to change?
max-lines-per-function
What change to do you want to make?
Generate fewer warnings
How do you think the change should be implemented?
A new default behavior
Example code
Wha