-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Keks
committed
Feb 25, 2024
0 parents
commit 9b22410
Showing
72 changed files
with
8,900 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Файл с настройками для редактора. | ||
# | ||
# Если вы разрабатываете в редакторе от JetBrains, BBEdit, Coda или SourceLair | ||
# этот файл уже поддерживается и не нужно производить никаких дополнительных | ||
# действий. | ||
# | ||
# Если вы ведёте разработку в другом редакторе, зайдите | ||
# на http://editorconfig.org и в разделе «Download a Plugin» | ||
# скачайте дополнение для вашего редактора. | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
webpack.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: 'module' | ||
|
||
env: | ||
es2017: true | ||
browser: true | ||
|
||
extends: 'htmlacademy/vanilla' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
* text eol=lf | ||
|
||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.webp binary | ||
*.woff binary | ||
*.woff2 binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: '*' | ||
|
||
name: Project check | ||
jobs: | ||
check: | ||
name: Check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '16' | ||
|
||
- uses: actions/checkout@master | ||
name: Checkout | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm install | ||
- name: Run checks | ||
run: | | ||
npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Файлы и папки операционной системы | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Файлы редактора | ||
.idea | ||
*.sublime* | ||
.vscode | ||
|
||
# Вспомогательные файлы | ||
*.log* | ||
node_modules/ | ||
|
||
# Собранные файлы (допишите самостоятельно) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Руководство по внесению изменений | ||
|
||
Поддерживайте ваш репозиторий обновлённым. Когда наставник принимает ваш пулреквест, он попадает в репозиторий Академии, но не в ваш форк. | ||
|
||
#### 1. Не коммитьте ничего самостоятельно в `master` вашего репозитория | ||
|
||
Это помешает вам аккуратно обновлять ваш репозиторий, могут возникнуть конфликты. | ||
|
||
#### 2. Прежде чем приступать к новому заданию, обновите `master` | ||
|
||
Обновить свой репозиторий из репозитория Академии можно так: | ||
|
||
``` | ||
# В вашей локальной копии переключитесь в ветку master | ||
git checkout master | ||
# Заберите изменения из репозитория Академии¹ | ||
git pull academy master | ||
# Отправьте изменения в ваш форк на Гитхабе | ||
git push | ||
``` | ||
|
||
¹ В `academy` должна быть ссылка на репозиторий Академии. Если его там нет, добавьте: | ||
|
||
``` | ||
git remote add academy [email protected]:htmlacademy-univer-js2/2502599-big-trip-4.git | ||
``` | ||
|
||
Когда вы обновили `master`, создайте ветку для нового задания: | ||
|
||
``` | ||
git checkout -b module2-task1 | ||
``` | ||
|
||
`module2-task1` — это название ветки. Под описанием каждого задания в интерфейсе курса для вас будет указано правильное название ветки. | ||
|
||
-- | ||
|
||
#### Есть вопрос? | ||
|
||
Посмотрите [коллекцию часто задаваемых вопросов по Git](http://firstaidgit.ru). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Проект «Большое путешествие» | ||
|
||
* Студент: [Кирилл Баталов](https://up.htmlacademy.ru/univer-js2/4/user/2502599). | ||
* Наставник: `Неизвестно`. | ||
|
||
--- | ||
|
||
_Не удаляйте и не изменяйте папки и файлы:_ | ||
_`.editorconfig`, `.gitattributes`._ | ||
|
||
--- | ||
|
||
### Памятка | ||
|
||
#### 1. Зарегистрируйтесь на Гитхабе | ||
|
||
Если у вас ещё нет аккаунта на [github.com](https://github.com/join), скорее зарегистрируйтесь. | ||
|
||
#### 2. Создайте форк | ||
|
||
Откройте репозиторий и нажмите кнопку «Fork» в правом верхнем углу. Репозиторий из Академии будет скопирован в ваш аккаунт. | ||
|
||
<img width="769" alt="Press 'Fork'" src="https://cloud.githubusercontent.com/assets/259739/20264045/a1ddbf40-aa7a-11e6-9a1a-724a1c0123c8.png"> | ||
|
||
Получится вот так: | ||
|
||
<img width="769" alt="Forked" src="https://cloud.githubusercontent.com/assets/259739/20264122/f63219a6-aa7a-11e6-945a-89818fc7c014.png"> | ||
|
||
#### 3. Клонируйте репозиторий на свой компьютер | ||
|
||
Будьте внимательны: нужно клонировать свой репозиторий (форк), а не репозиторий Академии. Также обратите внимание, что клонировать репозиторий нужно через SSH, а не через HTTPS. Нажмите зелёную кнопку в правой части экрана, чтобы скопировать SSH-адрес вашего репозитория: | ||
|
||
<img width="769" alt="SSH" src="https://cloud.githubusercontent.com/assets/259739/20264180/42704126-aa7b-11e6-9ab4-73372b812a53.png"> | ||
|
||
Клонировать репозиторий можно так: | ||
|
||
``` | ||
git clone SSH-адрес_вашего_форка | ||
``` | ||
|
||
Команда клонирует репозиторий на ваш компьютер и подготовит всё необходимое для старта работы. | ||
|
||
#### 4. Начинайте обучение! | ||
|
||
--- | ||
|
||
<a href="https://htmlacademy.ru/intensive/ecmascript"><img align="left" width="50" height="50" title="HTML Academy" src="https://up.htmlacademy.ru/static/img/intensive/ecmascript/logo-for-github.svg"></a> | ||
|
||
Репозиторий создан для обучения на профессиональном курсе «[JavaScript. Архитектура клиентских приложений](https://htmlacademy.ru/intensive/ecmascript)» от [HTML Academy](https://htmlacademy.ru). | ||
|
||
[check-image]: https://github.com/htmlacademy-ecmascript/2502599-big-trip-4/workflows/Project%20check/badge.svg?branch=master | ||
[check-url]: https://github.com/htmlacademy-ecmascript/2502599-big-trip-4/actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Директория с вёрсткой (markup) | ||
|
||
* `loading.html` - загрузка; | ||
* главная страница: | ||
* `list.html` - со списком точек маршрута; | ||
* `list-empty.html` - с пустым списком точек маршрута; | ||
* `list-filter.html` - с отфильтрованным списком; | ||
* `list-sort.html` - с отсортированным списком; | ||
* `add-new-point.html` - с показанной формой добавления новой точки маршрута; | ||
* `add-new-point-without-offers.html` - с формой добавления новой точки маршрута такого типа, для которого нет дополнительных опций; | ||
* `add-new-point-without-destination.html` - с формой добавления новой точки маршрута с пунктом назначения, для которого нет описания и фотографий; | ||
* `edit-point.html` - с формой редактирования точки маршрута из списка; |
Oops, something went wrong.