-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sprint 4 #68
Sprint 4 #68
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Поздравляю! Ваша работа принята.
Вы отлично потрудились.
Readme
хорошо оформлен- Проект задеплоен и отлично работает
- Отлично, что нет
EOF
ошибок в гите - Хорошая структура папок и файлов
- Отлично, что в
pre-commit
запускаются и тесты, и линтеры - Все тесты (15 шт) проходят успешно
npm audit
показывает ноль уязвимостей- Проект отлично выглядит и функционирует
Удачного дальнейшего обучения.
Можно лучше
- Если типизация повторяется в каждом методе (функции), то нужно типизировать сам метод (функцию), а не дублировать типизацию аргументов. Код станет чище
- Для линтинга на прекоммите можно воспользоваться библиотекой lint-staged . Она позволяет осуществлять линтинг только тех файлов, которые изменились
- И теперь нужно
fork
убрать, склонировать себе репозиторий, чтобы он стали именно Ваш.
"lint:css": "stylelint \"**/*.css\"", | ||
"test": "mocha", | ||
"prepare": "husky install", | ||
"pre-commit": "npm run lint:ts && npm run lint:css && npm run test" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Отлично, что в
pre-commit
запускаются и тесты, и линтеры
"pre-commit": "npm run lint:ts && npm run lint:css && npm run test" | ||
}, | ||
"dependencies": { | ||
"@types/express": "^4.17.21", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"@types/express"
нужно перенести в devDependencies
В devDependencies
указывается то, что необходимо для сборки и разработки приложения, а в dependencies
нужно указывать то, что необходимо непосредственно для работы приложения (express, uuid). Все линтеры, тесты, типы и тд нужно только в devDependencies
указывать, чтобы зря не раздувать кол-во пакетов в собранном для деплоя приложении.
"lint:ts": "eslint . --ext .ts,.js", | ||
"lint:css": "stylelint \"**/*.css\"", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Можно лучше
Для линтинга на прекоммите можно воспользоваться библиотекой lint-staged . Она позволяет осуществлять линтинг только тех файлов, которые изменились
} | ||
|
||
export class HTTPTransport { | ||
get: HTTPMethod = (url: string, options: Options) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(url: string, options: Options)
не нужно типизировать, так как HTTPMethod
раздает типы
get: HTTPMethod = (url, options) => {
No description provided.