Skip to content
This repository was archived by the owner on Aug 5, 2021. It is now read-only.

Commit d92a4af

Browse files
Explaining ESLint
Updating the md file to explain a wee bit eslint without getting into details.
1 parent 31c1abb commit d92a4af

File tree

1 file changed

+6
-3
lines changed
  • week-1/Homework/mandatory/0-thinking-like-a-programmer

1 file changed

+6
-3
lines changed

week-1/Homework/mandatory/0-thinking-like-a-programmer/task.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## 1. Install ESLint
44

5-
Using ESLint can make debugging a lot easier. If you haven't already you should install it now.
5+
ESLint is what is called an static analysis tool. It checks your code for common mistakes that can impact code quality and styling.
6+
7+
If you haven't already you should install it now.
68

79
https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
810

@@ -12,8 +14,9 @@ During these past weeks you have gotten a taste of what programming is: the vari
1214

1315
Thinking like a programmer is very similar to thinking like a construction worker:
1416

15-
You have to build something and it's up to you to know all the necessary tools and techniques to make that happen, and
16-
You have to solve every problem that comes up along the way (such as things that go wrong, knowing how to choose the right tools for the job and striving to achieve the right goal)
17+
* You have to build something and it's up to you to know all the necessary tools and techniques to make that happen, and
18+
* You have to solve every problem that comes up along the way (such as things that go wrong, knowing how to choose the right tools for the job and striving to achieve the right goal)
19+
1720
The second skill, problem solving, is the most important one. If you get good at that, you'll automatically get good at the first.
1821

1922
Take a look at the following resources to learn more about problem solving as applied to programming:

0 commit comments

Comments
 (0)