https://paperbull.herokuapp.com/
Paperbull is an online papertrading application designed to provide users with a cohesive stock trading experience. Users can log in with google and create their own profiles as they grow their virtual assets.
npm installpip install -r requirements.txt
- app.test.js
- index.js
- reportWebVitals.js
- setupTests.js
- canvasjs.min.js
- canvasjs.react.js
These files were not part of our main application, and therefore did not need to be linted.
disable=E1101,W1508,C0413,C0103
E1101is an error stating that an object had a non-existant member.W1508is an error relating to environment variables, and was not necessary.C0413is a wrong import position error, and prevents us from correctly importing modules.C0103is a variable nomenclature error, detailing that our database variable was not correctly named; however the name was part of our naming scheme across the team.
These errors were inhibiting the team from running our code and collaborating effectively.