Skip to content

Instantly share code, notes, and snippets.

@jkusachi
Last active September 13, 2017 19:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkusachi/ccb262d159d9bf6a67a51eefecf44eb2 to your computer and use it in GitHub Desktop.
Save jkusachi/ccb262d159d9bf6a67a51eefecf44eb2 to your computer and use it in GitHub Desktop.
help filter out noise in chrome dev tools when using hot module reload n stuff
// hide HMR and GET
/^((?!HMR|GET).)*$/
// Hide Warnings
/^((?!warning).)*$/
// Hide all
/^((?!warning|HMR|GET).)*$/
// wrap regex in / / if using Canary
ie:
/^((?!warning).)*$/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment