We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b202c09 commit d354632Copy full SHA for d354632
2 files changed
README.md
@@ -61,6 +61,7 @@ The primary goal of this repository is to track my progress in learning JavaScri
61
- `git push -u origin main`
62
63
2. Installation ESLint
64
+- project initialization `npm init`
65
- install `npm install eslint --save-dev`
66
- configuration `npm init @eslint/config`
67
- add prettier in `.eslintrc.json` :
package.json
@@ -0,0 +1,15 @@
1
+{
2
+ "name": "javascript-learning-project",
3
+ "version": "1.0.0",
4
+ "description": "Learning and mastering JavaScript",
5
+ "main": "test.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "learning",
11
+ "javascript"
12
+ ],
13
+ "author": "Adam Cegielka",
14
+ "license": "ISC"
15
+}
0 commit comments