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

Hakaton #26

Open
wants to merge 11 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
# 2024_2_42

Репозиторий команды 42. Проект Pinterest

## Участники проекта

### Участники команды
- [Владимир Федосеев](https://github.com/oruchim1001)
- [Станислав Керимов](https://github.com/wiseStann)
- [Иван Ивашкин](https://github.com/ironyyyr)

- [Владимир Федосеев](https://github.com/oruchim1001)
- [Станислав Керимов](https://github.com/wiseStann)
- [Иван Ивашкин](https://github.com/ironyyyr)

### Менторы
- **Интерфейсы** - Владислав Алекса
- **Frontend** - Владимир Захаров
- **Backend** - Володимир Коноплюк

- **Интерфейсы** - Владислав Алекса
- **Frontend** - Владимир Захаров
- **Backend** - Володимир Коноплюк

### [Бекенд](https://github.com/go-park-mail-ru/2024_2_42)

### [Макет](https://www.figma.com/design/VvBMjOb3axMwpUuVEeKphI/42-%F0%9F%8C%8C---Pinterest?node-id=0-1&node-type=canvas&t=C70s5PJoRRDr149R-0)

### [Деплой](http://37.139.41.77:8079/)
22 changes: 11 additions & 11 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import globals from 'globals';
import pluginJs from '@eslint/js';

export default [
{
languageOptions: {
globals: globals.browser,
{
languageOptions: {
globals: globals.browser,
},
},
},
{
rules: {
quotes: ["error", "single"], // Замените двойные кавычки на одинарные
{
rules: {
quotes: ['error', 'single'], // Замените двойные кавычки на одинарные
},
},
},
pluginJs.configs.recommended,
pluginJs.configs.recommended,
];
Loading