carlzoo / scalperr-ui

Frontend for Scalperr
https://scalperr-ui.netlify.com/
MIT License
1 stars 6 forks source link

Add eslint and prettier #36

Closed calebmchenry closed 5 years ago

calebmchenry commented 5 years ago

Added eslint config and integrated it with prettier. Updated Navbar.js to be a function component like the other files.

calebmchenry commented 5 years ago

PR for #35

If you are using vscode you can get eslint auto fixing on save if you add this to your settings.json and install the eslint plugin.

"eslint.validate": [
    "javascript",
    "javascriptreact"
],
"eslint.autoFixOnSave": true,