File tree Expand file tree Collapse file tree 1 file changed +89
-1
lines changed
Expand file tree Collapse file tree 1 file changed +89
-1
lines changed Original file line number Diff line number Diff line change 1- # JavaScript Assessments
1+ # 📓 JavaScript Assessments
22
33- [ Convert string to group] ( convert-string-to-group )
44- [ Delete Overlapping Intervals] ( delete-overlapping-intervals )
1212- [ Replacing with the cipher letters] ( replacing-with-the-cipher-letters )
1313- [ Throttle Queue] ( throttle-queue )
1414- [ Validating a maze path] ( validating-a-maze-path )
15+
16+ ## 📝Environment
17+
18+ - node 18.x or later
19+ - yarn 1.x or later
20+ - npm 8.x or later
21+
22+ ## 🚧Install npm packages
23+
24+ ``` bash
25+ npm i -g yarn
26+ yarn
27+ ```
28+
29+ ## ✅Lint
30+
31+ ``` bash
32+ yarn lint
33+ ```
34+
35+ ## ❤️Prettier
36+
37+ ``` bash
38+ prettier --write ./
39+ ```
40+
41+ ``` bash
42+ # if you couldn't run above command line, it would work after run this...
43+ npm i -g prettier
44+ ```
45+
46+ ## 🐞Git commit
47+
48+ Please use [ Conventional Commits] ( https://www.conventionalcommits.org/en/v1.0.0/ ) for your commits.
49+
50+ e.g.
51+
52+ ``` commit
53+ <type>[scope]: <subject>
54+ [body]
55+ [footer]
56+ ```
57+
58+ ### ♻️Types
59+
60+ ` type ` should be one of belows.
61+
62+ ``` bash
63+ add
64+ adopt
65+ build
66+ chore
67+ docs
68+ feat
69+ fix
70+ refactor
71+ remove
72+ style
73+ ```
74+
75+ ### 📓Subject
76+
77+ ` subject ` should include one of emojis as belows.
78+
79+ ♻️
80+ ⚡️
81+ ✅
82+ ✏️
83+ ✨
84+ ❤️
85+ ⬆️
86+ ⬇️
87+ ⭐️
88+ 🌈
89+ 🎁
90+ 🎉
91+ 🏆
92+ 🐞
93+ 👌
94+ 📓
95+ 📝
96+ 📦
97+ 🔀
98+ 🔖
99+ 🚀
100+ 🚧
101+ 🚨
102+ 🛠️
You can’t perform that action at this time.
0 commit comments