Last active
November 5, 2018 22:08
-
-
Save jwerre/722834dad3ed3ce9d5b86ea123418241 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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