Skip to content

Instantly share code, notes, and snippets.

@ithinkihaveacat
Last active July 15, 2016 11:18
Show Gist options
  • Select an option

  • Save ithinkihaveacat/7ce9ac7e567eb3ade319658786107aa0 to your computer and use it in GitHub Desktop.

Select an option

Save ithinkihaveacat/7ce9ac7e567eb3ade319658786107aa0 to your computer and use it in GitHub Desktop.

Temporarily disable rules

foo(); // eslint-disable-line

/* eslint-disable no-alert, no-console */
alert('foo');
console.log('bar');
/* eslint-enable no-alert, no-console */

Setting environments

/* eslint-env browser */
/* eslint-env node */

Global variables

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