Created
June 8, 2017 21:08
-
-
Save peterdemartini/82ec027ba11fbc2ff4375e16ef4924dc to your computer and use it in GitHub Desktop.
My Eslint
This file contains 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
Show hidden characters
{ | |
"root": true, | |
"extends": [ | |
"eslint:recommended", | |
"prettier" | |
], | |
"rules": { | |
"semi": [ 2, "never" ], | |
"no-undefined": "error" | |
}, | |
"env": { | |
"es6": true, | |
"browser": true, | |
"mocha": true, | |
"node": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment