Last active
March 20, 2020 18:12
-
-
Save grahamb/670c33f43270c041a8b7b9fb869ef9b8 to your computer and use it in GitHub Desktop.
node devtools bootstarap
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": ["unobtrusive"], | |
"parserOptions": { | |
"ecmaFeatures": { | |
"experimentalObjectRestSpread": true | |
} | |
}, | |
"env": { | |
"browser": false, | |
"es6": true, | |
"jest": false, | |
"node": true | |
}, | |
"parser": "babel-eslint", | |
"rules": { | |
"react/display-name": "off" | |
} | |
} |
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
{ | |
"singleQuote": true, | |
"trailingComma": "es5", | |
"tabWidth": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment