Open nathanhannig opened 3 years ago
I noticed that the server application has ESLint config files, but the packages are not installed into package,json.
package,json
This means that coding standards are not being followed in the server source files.
Prettier is being use in frontend, so I wanted to mention that as well in case you want it on the backend as well.
npm install eslint babel-eslint --save-dev
Will install missing dependencies, however, the linter will need to be ran across the whole code base to resolve issues and handle issues related to unused variables.
I noticed that the server application has ESLint config files, but the packages are not installed into
package,json
.This means that coding standards are not being followed in the server source files.
Prettier is being use in frontend, so I wanted to mention that as well in case you want it on the backend as well.