Skip to content

Instantly share code, notes, and snippets.

@jwerre
Last active November 5, 2018 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwerre/722834dad3ed3ce9d5b86ea123418241 to your computer and use it in GitHub Desktop.
Save jwerre/722834dad3ed3ce9d5b86ea123418241 to your computer and use it in GitHub Desktop.
extends: 'eslint:recommended'
env:
node: true
mocha: true
es6: true
parserOptions:
ecmaVersion: 8
sourceType: module
ecmaFeatures:
globalReturn: false
impliedStrict: true
jsx: false
rules:
indent:
- error
- tab
linebreak-style:
- error
- unix
quotes:
- error
- single
semi:
- error
- always
no-console: 'off'
no-unused-vars:
- error
- vars: all
args: none
ignoreRestSiblings: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment