Skip to content

Instantly share code, notes, and snippets.

@sleeyax
Last active July 14, 2020 21:18
Show Gist options
  • Save sleeyax/d795f84751380580ba1452d895921989 to your computer and use it in GitHub Desktop.
Save sleeyax/d795f84751380580ba1452d895921989 to your computer and use it in GitHub Desktop.
eslint cheatsheet

eslint cheatsheet

Configuring rules

Disable eslint check for the next line:

// eslint-disable-next-line no-use-before-define
var thing = new Thing();

Current line:

var thing = new Thing(); // eslint-disable-line no-use-before-define

See the eslint docs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment