Skip to content

Commit d354632

Browse files
committed
feat: project initialization
1 parent b202c09 commit d354632

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ The primary goal of this repository is to track my progress in learning JavaScri
6161
- `git push -u origin main`
6262

6363
2. Installation ESLint
64+
- project initialization `npm init`
6465
- install `npm install eslint --save-dev`
6566
- configuration `npm init @eslint/config`
6667
- add prettier in `.eslintrc.json` :

package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)