Skip to content
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

Closed
wants to merge 47 commits into from
Closed

Sprint 4 #68

wants to merge 47 commits into from

Conversation

Pillowbee
Copy link

No description provided.

Copy link

@gennady-bars gennady-bars left a 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"

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",

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 указывать, чтобы зря не раздувать кол-во пакетов в собранном для деплоя приложении.

Comment on lines +15 to +16
"lint:ts": "eslint . --ext .ts,.js",
"lint:css": "stylelint \"**/*.css\"",

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) => {

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) => {

@Pillowbee Pillowbee closed this by deleting the head repository Apr 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants