Skip to content

Instantly share code, notes, and snippets.

@jtr109
Last active January 27, 2018 05:54
Show Gist options
  • Save jtr109/baa5222575006769901261db6b39a0e4 to your computer and use it in GitHub Desktop.
Save jtr109/baa5222575006769901261db6b39a0e4 to your computer and use it in GitHub Desktop.
Eslint tips

Eslint tips

Disable one line

Rule

// eslint-disable-line <lint-rule>

Example

const unused_var = null  // eslint-disable-line no-unused-vars

Global variable

/* global <globalVar>:true */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment