Created
December 6, 2015 02:13
-
-
Save cullylarson/3f7966b32ae5add8d62d to your computer and use it in GitHub Desktop.
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
{ | |
"rules": { | |
"indent": [ 2, 4 ], | |
"quotes": [ 2, "double" ], | |
"linebreak-style": [ 2, "unix" ], | |
"semi": [ 2, "never" ], | |
"comma-dangle": [ 0, "always-multiline" ] | |
}, | |
"env": { | |
"es6": true, | |
"browser": true, | |
"node": true | |
}, | |
"ecmaFeatures": { | |
"modules": true, | |
"spread": true, | |
"destructuring": true, | |
"experimentalObjectRestSpread": true | |
}, | |
"extends": "eslint:recommended" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment