Skip to content

Commit e87d5d0

Browse files
committed
init project
0 parents  commit e87d5d0

File tree

8 files changed

+2920
-0
lines changed

8 files changed

+2920
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.prettierignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dist
2+
node_modules
3+
.gitignore
4+
.prettierignore
5+
yarn.lock
6+
package-lock.json
7+
.husky
8+
assets

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": true,
3+
"tabWidth": 4,
4+
"printWidth": 80,
5+
"singleQuote": true,
6+
"bracketSpacing": false,
7+
"bracketSameLine": true
8+
}

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Core Javascript
2+
3+
## Как пользоваться
4+
5+
Для того, чтобы всё корректно работало, у вас должен быть установлен [node](https://nodejs.org/en/) и [git](https://git-scm.com/)
6+
* Скачайте проект к себе. Есть 3 способа:
7+
- Сачайте проект как архив
8+
- Склонируйте текущий репозиторий и пересоздайте гит репозиторий (либо же указываем новый remote на свой репозиторий)
9+
- Сделайте fork репозитория и склонируйте его к себе
10+
* Перед тем, как начать делать домашние задания, выполните `npm install`
11+
* Чтобы проверить решения заданий с тестами, используйте `npm test`

0 commit comments

Comments
 (0)