Team Meeting 1:
- Deciding the framework for unit testing
- Dividing the work
Team Meeting 2:
- Reviwing the project
- Dividing the work
Task 3:
- Linters:
A linter is a tool that may be used to make your code better. Linters are not just used with JavaScript. However, I'd argue that most individuals researching linters are drawn to those that focus on JavaScript. The advantages are as following:
- Fewer production errors
- Code that is easier to read, maintain, and use consistently
- Enhance code quality
Linters can provide the following checks:
- Syntax Errors
- Code standard adherence
- Code smells
- Security checks
The installation process is as following:
- Open your open-source project
- Run npm install eslint --save-dev
- Run npx eslint --init to initialize
- Then choose the types of checks needed and types of languages
- To check a specific file, run npx eslint (file-path)